Di Posting Oleh : Simple Learning
Kategori : C++ decimal to binary. Decimal to binary conversion sample code without using arrays
C++ Program to Find the Binary Value of Decimal Number Using for loop
C++ Code:
Image view of Code:
See Another Example Here
C++ Program to Convert binary number into decimal number
C++ Code:
- #include<iostream>
- #include <stdio.h>
- using namespace std;
- int main()
- {
- int n,x,a, c, k;
- cout<<"Enter an integer in decimal number system";
- cin>>x;
- n=x;
- cout<<"Binary Value OF Given Number Is: ";
- for( a=1;n!=0;a++)
- {
- n=n/2;
- }
- a=a-2;
- for (c = a; c >= 0; c--)
- {
- k = x >> c;
- if (k & 1)
- cout<<"1";
- else
- cout<<"0";
- }
- return 0;
- }
Decimal to Binary Conversion Sample output |
Image view of Code:
Decimal to Binary Conversion C++ program code |
See Another Example Here
C++ Program to Convert binary number into decimal number
0 Response to "Find the binary value of decimal number in C++"
Post a Comment