yaooo


私信TA

用户名:uq_97606460667

访问量:262

签 名:

等  级
排  名 20416
经  验 695
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include<iostream>
using namespace std;
#include<stack>
stack<char> s;
int main()
{
    int n;
    char a[3]="01";
    while(cin>>n){
        int t;
        t=n;
        if(n==0) s.push(a[0]);
        if(n<0) n=-n;
        while(n>0) {
            s.push(a[n%2]);
            n/=2;
        }
        cout<<t<<"-->";
        if(t<0) cout<<"-";
        while(!s.empty()){
                cout<<s.top();
                s.pop();   
        }
        cout<<endl;
    }
    return 0;
}

 

0.0分

0 人评分

  评论区

  • «
  • »