解题思路:
注意事项:
000 = 0
参考代码:
#include <iostream> #include <string> using namespace std; int pow(int a, int b) { int ans = 1; while (b) { if (b & 1) ans *= a; a *= a; b >>= 1; } return ans; } void toOther(int n, int type, string& s) { if (n) { toOther(n/type, type, s); s += n%type > 9 ? n%type - 10 + 'A' : n%type + '0'; } } int toDec(string s, int type) { int len = s.length(); int ans = 0; for (int i = 0; i < len; i++) { if (s[i] >= '0' && s[i] <= '9') ans += (s[i] - '0')*pow(type, len - i - 1); else if (s[i] >= 'A' && s[i] <= 'Z') ans += (s[i] - 'A' + 10)*pow(type, len - i - 1); } return ans; } int main() { string s; cin >> s; if (s == "000") s = "0"; int dec = toDec(s, 16); string oct; if (dec) toOther(dec, 8, oct); else oct = "0"; cout << s << " " << dec << " " << oct << endl; return 0; }
0.0分
1 人评分
化学品问题 (C语言代码)浏览:1394 |
K-进制数 (C++代码)浏览:938 |
C语言考试练习题_排列 (C语言代码)浏览:1373 |
C语言训练-字符串正反连接 (C语言代码)浏览:664 |
母牛的故事 (C语言代码)浏览:478 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:603 |
大神老白 (C语言代码)浏览:690 |
K-进制数 (C语言描述,蓝桥杯)浏览:955 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:590 |
sizeof的大作用 (C语言代码)浏览:1593 |