摘要: 求最大公约数 1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 using namespace std; 5 //枚举法 6 void find1(int a,int b) 7 { 8 int i = min(a, b); 阅读全文