解题思路:
注意事项:注意输入x的方式
参考代码:
#include<stdio.h>
#include<iostream>
#include<string.h>
#include<stack>
using namespace std;
stack<int> s;
void bajinz(int x)
{
while(x>0)
{
int t=x%8;
s.push(t);
x/=8;
}
return ;
}
int main()
{
int x;
for(;cin>>x;)
{
bajinz(x);
while(!s.empty())
{
printf("%d",s.top());
s.pop();
}
printf("\n");
}
return 0;
}
0.0分
0 人评分
1009题解浏览:802 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:590 |
A+B for Input-Output Practice (VII) (C语言代码)浏览:566 |
数字游戏 (C++代码)浏览:1240 |
1035 题解浏览:875 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1496 |
计算质因子 (C语言代码)浏览:778 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:725 |
简单的事情 (C语言代码)浏览:679 |
矩阵转置 (C语言代码)浏览:855 |