判断是否互质数。
注意输出格式。
代码:
1 #include<iostream> 2 #include<cstdio> 3 4 using namespace std; 5 6 int gcd(int a, int b) //求最大公约数 7 { 8 return b? gcd(b, a%b) : a; 9 } 10 11 int main() 12 { 13 int s, m; 14 while(cin >> s >> m) 15 { 16 if (gcd(s, m) == 1) 17 printf("%10d%10d Good Choice\n\n", s, m); 18 else 19 printf("%10d%10d Bad Choice\n\n", s, m); 20 } 21 return 0; 22 }