贪心问题-随便
摘要:以后想把博客都发在博客园,但还不太会用博客园的编译器芜湖 埃及分数 推导过程: 代码实现: #include<iostream> using namespace std; int gcd(int x, int y) { return !y ? x : gcd(y, x % y); } void Eg
阅读全文
posted @ 2021-11-09 19:36
posted @ 2021-11-09 19:36