2 条题解
-
0张浩翔 LV 10 @ 2024-5-24 22:00:40
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; cout<<0<<setfill('0')<<oct<<n; }
-
02024-5-7 17:10:10@
#include<bits/stdc++.h> using namespace std; const int N=1e4+10; long long a,b,c,d,e,f,g;//b为计数器 string n[N]; string sb="01234567";//保存数字 int main(){ cin>>a; cout<<"0";//输出前缀 while(a>0){ n[++b]=sb[a%8]; a/=8; } for(int i=b;i>=1;i--){ cout<<n[i];//逆序输出 } return 0; }
- 1
信息
- ID
- 3123
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 1
- 标签
- 递交数
- 33
- 已通过
- 15
- 上传者