Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
324072 | 毛泽锡 | 【C6-2】小丽找潜在的素数? | C++ | 解答错误 | 0 | 0 MS | 260 KB | 443 | 2025-05-24 15:06:18 |
#include<bits/stdc++.h> using namespace std; string s; int main(){ long long n,a,t; cin>>n>>t; char c; if(n==0){ s="0"; } if(t==8){ while(n>0){ c=n%2+'0'; s=c+s; n=n/2; } } if(t==16){ while(n>0){ a=n%16; if(a<10){ c=a+'0'; }else{ c=a+'A'-10; } s=c+s; n=n/16; } } if(t==8){ while(n>0){ c=n%8+'0'; s=c+s; n=n/8; } } cout<<s; return 0; }