Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
141556 | 黄恩宁 | 十进制转d进制 | C++ | 解答错误 | 50 | 0 MS | 264 KB | 312 | 2024-04-06 08:18:56 |
#include<iostream> #include<cstdio> #include<stack> using namespace std; stack<int> stk; int main() { int n,d; cin>>n>>d; while(n) { stk.push(n%d); n/=d; } while(!stk.empty()) { int x=stk.top(); stk.pop(); if(x>=10) cout<<(char)(x-'0'+'A'); else cout<<x; } return 0; }