首页 > 代码库 > 进制(堆栈)

进制(堆栈)

#include <iostream>using namespace std;#include <stack>#include <algorithm>int main(){    int i,k,n,m;    stack<int>s;    scanf("%d%d",&n,&m);    while(n)    {        s.push(n%m);        n=n/m;    }    while(!(s.empty()))     {if(s.top()<10)  cout<<s.top();     else             cout<<char(A+s.top()-10);      s.pop();  }          cout<<endl;    }
View Code

#include <iostream>
using namespace std;
#include <stack>
#include <algorithm>
int main()
{
int i,k,n,m;
stack<int>s;
scanf("%d%d",&n,&m);
while(n)
{
s.push(n%m);
n=n/m;
}
while(!(s.empty()))
{   if(s.top()<10)      cout<<s.top();
     else                   cout<<char(‘A‘+s.top()-10);
      s.pop();         }

cout<<endl;
}