+ Link For Assignments, GDBs & Online Quizzes Solution |
+ Link For Past Papers, Solved MCQs, Short Notes & More |
Decimal to Binary conversion in c++ by using the Recursion
See the code given below i sure you will found some errors while compiling this code. So, please don't forget to put less than and greater than expression after cout and cin. these expression has been removed due to the ning.api does not support to these expression so put them after cin and cout.
This code will convert to a Decimal number into Binary code.
we will learn in this code:
I hope you can understand this code easily. if you have any problem then you may ask.
#include<iostream>
using namespace std;
void convert(int);
main(){
int number;
cout "Please enter a positive integer: ";
cin >> number;
if (number < 0)
cout "That is not a positive integer.\n";
else {
cout endl number " converted to binary is: ";
convert(number);
cout endl;
}
coutendl;
system("pause");
return 0;
}
void convert(int number) {
int remainder;
if(number <= 1) {
cout number;
return;
}
remainder = number%2;
convert(number >> 1);
cout remainder;
}
Download the attachment file given below
Tags:
+ http://bit.ly/vucodes (Link for Assignments, GDBs & Online Quizzes Solution)
+ http://bit.ly/papersvu (Link for Past Papers, Solved MCQs, Short Notes & More)
+ Click Here to Search (Looking For something at vustudents.ning.com?) + Click Here To Join (Our facebook study Group)agr vaule -ve ho to kia us ko binary mn convert ni kia ja skta??? is mn +ve hi q?
kr sakty hen convert
© 2021 Created by + M.Tariq Malik.
Powered by
Promote Us | Report an Issue | Privacy Policy | Terms of Service
We have been working very hard since 2009 to facilitate in learning Read More. We can't keep up without your support. Donate.
We are user-generated contents site. All product, videos, pictures & others contents on site don't seem to be beneath our Copyrights & belong to their respected owners & freely available on public domains. We believe in Our Policy & do according to them. If Any content is offensive in your Copyrights then please email at m.tariqmalik@gmail.com Page with copyright detail & We will happy to remove it immediately.
Management: Admins ::: Moderators
Awards Badges List | Moderators Group
All Members | Featured Members | Top Reputation Members | Angels Members | Intellectual Members | Criteria for Selection
Become a Team Member | Safety Guidelines for New | Site FAQ & Rules | Safety Matters | Online Safety | Rules For Blog Post