题目意思
解题思路
我们用知道的n去反推,如果是偶数就让n=(n-2)/2,否则就让n=(n-1)/2。直到n=0。这样我们得到的是方案是反过来的,我们将结果反过来输出就可以了。
代码部分
#include <iostream>
#include <string.h>
#include <stdio.h>
#include <cstring>
#include <algorithm>
using namespace std;
int main()
{
int n;
scanf("%d",&n);
string s="";
while(n)
{
if(n%2==0)
{
n=(n-2)/2;
s+="2";
}
else
{
n=(n-1)/2;
s+="1";
}
}
reverse(s.begin(),s.end());
cout<<s<<endl;
return 0;
}