1 #include2 using namespace std; 3 4 int Gcd(int a,int b){ 5 if(a%b==0) return b; 6 else return Gcd(b,a%b); 7 } 8 9 int main(){10 int a,b;11 while(cin>>a>>b)12 cout< <
本文共 280 字,大约阅读时间需要 1 分钟。
1 #include2 using namespace std; 3 4 int Gcd(int a,int b){ 5 if(a%b==0) return b; 6 else return Gcd(b,a%b); 7 } 8 9 int main(){10 int a,b;11 while(cin>>a>>b)12 cout< <
转载于:https://www.cnblogs.com/Gzu_zb/p/9372741.html