摘要: U190849 最简分式 #include<bits/stdc++.h> using namespace std; // gcd(a,b) = gcd(b, a%b): a,b的最大公约数 = b,a%b 的最大公约数 int gcd(int a,int b) { // return b ? gcd 阅读全文
posted @ 2023-01-03 10:28 HelloHeBin 阅读(160) 评论(0) 推荐(0)