原题:
Give you a number on base ten,you should output it on base two.(0 < n < 1000)
题意:
给一个十进制数转化为二进制数
题解:这一节最后一个竟然是个水题,十进制转化二进制就是不断除以二求余。
代码:AC
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int erjinzhi[1000];
int n,j;
while(cin>>n)
{
int i=0;
if(n==0)
cout<<0;
else
{
while(n!=0)
{
erjinzhi[i]=n%2;
i++;
n=n/2;
}
for(j=i-1;j>=0;j--)
cout<<erjinzhi[j];
cout<<endl;
}
}
return 0;
}