Loading

摘要: int gcd(int a,int b) { if(b) while((a%=b)&&(b%=a)); return a+b; } 阅读全文
posted @ 2020-08-04 17:50 zzqDeco 阅读(91) 评论(0) 推荐(0) 编辑