Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
42243 | YOYOLEE-李昕颖 | 年号字符串 | C++ | 解答错误 | 0 MS | 252 KB | 235 | 2024-02-25 09:24:45 |
#include<bits/stdc++.h> using namespace std; int a[10],cnt; int main() { int n; cin>>n; a[cnt++]=n%26+64; n/=26; while(n){ a[cnt++]=n%26+65; n/=26; } for(int i=cnt-1;i>=0;i--){ cout<<a[i]; } return 0; }