Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
11801 huyanfeng 十进制转八进制 C++ 通过 0 MS 248 KB 250 2023-03-16 22:09:43

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int a[110]; int main() { int num, cnt = 0; cin >> num; while(num != 0) { a[++cnt] = num % 8; num /= 8; } for (int i = cnt; i >= 1; i--) { cout << a[i]; } return 0; }


测评信息: