Excel地址JAY.LIN 收录于 未分类 2025-03-14 约 43 字 预计阅读 1 分钟 目录 Excel地址 #include <iostream> using namespace std; int main() { // 请在此输入您的代码 int n; cin>>n; string s; while(n>0){ n--; char c='A'+(n%26); s = c+s; n/=26; } cout<<s; return 0; }Please enable JavaScript to view the comments powered by Giscus.