摘要: 1 #include<iostream> 2 #include<cmath> 3 #include<cstring> 4 using namespace std; 5 6 //最大公约数 (辗转相除循环法) 7 int gcd(int a, int b) 8 { 9 while(b) 10 { 11 阅读全文
posted @ 2022-03-23 17:18 TFLSNOI 阅读(55) 评论(0) 推荐(0) 编辑