#include<iostream
>
#include<conio.h
>
#include<math.h
>
using namespace std;
int Decimal_to_Binary(long n)
{
long binary_number = 0;
int remainder = 0, i = 1, step = 1;
while(n!=0)
{
remainder = n%2;
cout<<"Step : "<<step++
<<"\t"<<n
<<"/2\tRemainder = "<<remainder
<<"\tQuotient = "<<n/2
<<endl;
n = n/2;
binary_number = binary_number + (remainder*i);
i = i*10;
}
return binary_number;
}
int main()
{
int num;
cout<<"Enter a decimal number : ";
cin>>num;
cout<<"Decimal Number "<<num
<<" is equal to "<<Decimal_to_Binary(num)
<<" Binary Number."<<endl;
getch();
return 0;
}
Sunday, 22 October 2017
Program to Convert Decimal Number to Binary Number in c++
Subscribe to:
Post Comments (Atom)
Python Program to find Fabonacci
fabtab={} def fabonacci(n): fabtab[0]=0 fabtab[1]=1 for i in range(2,n+1): fabtab[i]=fabtab[i-1]+fabtab[i-2] ...
-
#include stdio.h > #include stdlib.h > #include conio.h > int arr[100], size=0; void insert_beg(); void insert_pos(); void inser...
-
#include iostream> #include conio.h > using namespace std; int main() { int n,num,first=0,middle,last; ...
-
#include iostream > #include conio.h > using namespace std; int main() { float radius; double area; ...
No comments:
Post a Comment