You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include<iostream>
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
int n=12;
|
|
int i,j=0;
|
|
int a[1000];
|
|
|
|
i=n;
|
|
while(i)
|
|
{
|
|
a[j]=i%2;
|
|
i/=2;
|
|
j++;
|
|
}
|
|
for(i=j-1;i>=0;i--)
|
|
{
|
|
cout<<a[i];
|
|
}
|
|
cout<<endl;
|
|
return 0;
|
|
}
|