苇岸弦歌
苇岸弦歌
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
苇岸弦歌的博客
全部文章
(共47篇)
题解 | #最大公约数#
辗转相除法求最大公约数,递归实现 #include <iostream> using namespace std; int gcd(int a,int b){ if(b==0) return a; else return gcd(b,a%b); } int main() ...
2023-02-16
0
262
题解 | #数制转换#
#include <iostream> #include "cmath" using namespace std; int charToInt(char c){ if(c>='a'&&c<='f') return c-'a'+10; else if(c>...
2023-02-15
0
273
题解 | #进制转换#
n进制到10进制可以有两种转换思路:一种是乘n加余,一种是a*(n^k)累加 #include <iostream> #include "stack" #include "cmath" using namespace std; int charToInt(char c) { if...
2023-02-15
0
360
题解 | #又一版 A+B#
#include <iostream> #include "stack" using namespace std; int main() { int m; while (cin >> m) { if (m == 0) break; ...
2023-02-15
0
272
题解 | #八进制#
十进制转化为n进制的过程:取余数,除以n,循环直至被除数小于0 #include <iostream> #include "vector" using namespace std; int main() { int a,b; while (cin >> a ...
2023-02-15
0
246
题解 | #10进制 VS 2进制#
难点在于字符串实现加法和乘除 #include <iostream> #include <vector> using namespace std; string divide(string str) { int remain = 0; string resul...
2023-02-15
0
278
题解 | #进制转换#
#include <iostream> #include "stack" #include "vector" using namespace std; string divide(string str) { string result; int remain = 0; ...
2023-02-15
0
316
首页
上一页
1
2
3
4
5
下一页
末页