C++语言编写两个函数 gcd 和 lcm
C++语言编写两个函数 gcd 和 lcm
日期:2021-04-05 16:59:42 人气:1
#include<cstdio>
using namespace std;
int gcd(int a,int b){ //辗转相除法
if(a%b==0) return b;
else return gcd(b,a%b);
}
int lcm(int 
C++语言编写两个函数 gcd 和 lcm
#include<cstdio>
using namespace std;
int gcd(int a,int b){ //辗转相除法
if(a%b==0) return b;
else return gcd(b,a%b);
}
int lcm(int