2019蓝桥杯省赛B组C++年号字串

 

#include
#include
#include
using namespace std;


int main()
{
  stacks;//声明栈 
   int n;
   cin>>n;
   while(n)
   {
       s.push(n%26);
       n=n/26;
       
    } 
    while(!s.empty())//专门判断是不是空 
    {
        int p=s.top()-1;
        printf("%c",'A'+p);
        s.pop();//用完一个就得进行弹出,否则一直是这一个数字 
    }
 
return 0;
}

你可能感兴趣的:(蓝桥杯,蓝桥杯,c++,p2p)