分析
26进制运算考查。
2019最后对应字符为BYQ
C++ 代码
#include<bits/stdc++.h>
using namespace std;
string s,t;
int main()
{
cin>>s;
int num=stoi(s);
num-=1;
while(num){
t+=((num%26)+'A'-1);
num/=26;
}
t[0]=(t[0]+1);
t=string(t.rbegin(),t.rend());
cout<<t;
return 0;
}