无名选手


私信TA

用户名:qwer123456

访问量:11060

签 名:

qwer123456

等  级
排  名 859
经  验 3603
参赛次数 10
文章发表 25
年  龄 0
在职情况 学生
学  校 某知名大专
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<iostream>
#include<queue>
#include<stack>
using namespace std;
int main()
{
 int n;
 stack<char>q;
 cin>>n;
 while(n)
 {
  int k;
  n--;
  k=n%26;
  n/=26;
  q.push(k+'A');
 }
 while(!q.empty())
    {
     cout<<q.top();
     q.pop();
 } 
 return 0;
}


 

0.0分

3 人评分

  评论区

为什么n--?
2020-03-07 14:07:49
  • «
  • 1
  • »