首页 > 代码库 > UVa 11827 - Maximum GCD
UVa 11827 - Maximum GCD
题目:给你一组数,求出其中两两最大公约数中最大的值。
分析:数论。数据较小,直接枚举即可。
说明:注意输入格式。
#include <iostream> #include <cstdlib> #include <cstdio> using namespace std; int data[101]; int gcd(int a, int b) { return a%b?gcd(b, a%b):b; } int main() { int n,m; scanf("%d",&n); while (getchar() != '\n'); while (n --) { char buf; int count = 0; while ((buf = getchar()) != '\n') if (buf >= '0' && buf <= '9') { ungetc(buf,stdin); scanf("%d",&data[count ++]); } int max = 1,temp; for (int i = 0 ; i < count ; ++ i) for (int j = 0 ; j < i ; ++ j) { temp = gcd(data[i], data[j]); if (max < temp) max = temp; } printf("%d\n",max); } return 0; }
UVa 11827 - Maximum GCD
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。