用C++编写程序定义两函数求两整数的最大公约数和最小公倍数
用C++编写程序定义两函数求两整数的最大公约数和最小公倍数
日期:2018-11-23 20:18:15 人气:1
//#include "stdafx.h"//If the vc++6.0, with this line.#include using namespace std;int mygcd(int a,int b){ int r; while(r=a%b) a=b,b=r; return b;}int mylcm(int a,int b){ for(int t=a;a%b;a+=t); return a;}int main(int argc,char *a