进制转化
Posted 一点绝不是微小
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了进制转化相关的知识,希望对你有一定的参考价值。
对于输入的任意一个非负十进制整数,利用栈打印输出与其等值的八进制数。
输入
114
输出
162
#include<cstdio>
#include<stack>
#include<iostream>
using namespace std;
int main()
{
int i,t,n;
while(~scanf("%d",&n))
{
stack<int>st;
st.empty();//清空栈
while(n)
{
t=n%8;
st.push(t);//入栈
n=n/8;
}
while(!st.empty())
{
cout<<st.top();
st.pop();
}
cout<<endl;
}
return 0;
}
以上是关于进制转化的主要内容,如果未能解决你的问题,请参考以下文章