职业摆烂人


私信TA

用户名:uq_59495985965

访问量:6507

签 名:

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

  自我简介:

TA的其他文章


解题思路:

注意事项:

参考代码:

#include<iostream>
#include<cmath>
using namespace std;
void DP(int n)
{
    if(n<=1)
    {
        cout<<n;
    }
    else
    {
        DP(n/2);
        cout<<n%2;
    }
}
int main()
{
    int n;
    while(scanf("%d",&n)!=EOF)
    {
       cout<<n<<"-->";
       if(n<0)
        {
           cout<<"-";
        }
        DP(abs(n));
        cout<<endl;
    }
    return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »