摘要: void gongyueshu(){ int a,b,r,n; scanf("%d,%d", &a, &b); if(a<b){ n=a; a=b; b=n; } r=a%b; while(r!=0){ a=b; b=r; r=a%b; } printf("%d",b);} #include<std 阅读全文
posted @ 2021-03-14 12:11 陈扬天 阅读(182) 评论(0) 推荐(0) 编辑