摘要: #include using namespace std; int gcd(int a,int b) { int r; while(b>0) { r=a%b; a=b; b=r; } return a; } int main() { int a,b; while(scanf("%d%d",... 阅读全文
posted @ 2018-03-25 12:06 翛宁 阅读(200) 评论(0) 推荐(0) 编辑