C小白


私信TA

用户名:dotcpp0732071

访问量:1478

签 名:

等  级
排  名 4402
经  验 1702
参赛次数 0
文章发表 33
年  龄 0
在职情况 学生
学  校 华南农业大学
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:注意输入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 人评分

  评论区

  • «
  • »