☆☆浮生若梦
☆☆浮生若梦
全部文章
题解
归档
标签
去牛客网
登录
/
注册
☆☆浮生若梦的博客
全部文章
/ 题解
(共2篇)
最大公约数
#include<bits/stdc++.h> using namespace std; int f(int b,int c) { if(c==0) return b; else return f(c,b%c); } int main() { in...
2021-02-03
0
552
a+b字符串与数字互转
参考@Senjie这位老哥的,感谢!!!代码十分简洁,感觉还不戳特此分享!!! #include<bits/stdc++.h> using namespace std; int main() { string s1,s2; while(cin>>s1>&...
2021-02-03
14
962