编写函数把一个十进制数输出其对应的八进制数。
样例输入
9274
样例输出
22072
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; string s; while(n) { s = (char)(n % 8 + '0') + s; n = n / 8; } cout << s; return 0; } |
❤ 点击这里 -> 订阅《PAT | 蓝桥 | LeetCode学习路径 & 刷题经验》by 柳婼