First post, oh boy... So i finally got around to joining up. Now im checking out all that there is to do on the site. will actually update when i have time between classes
More Blogs
-
0
Saturday Dec 30, 2006
<3 stealing teh internets so im here at my friends place in was… -
1
Saturday Dec 31, 2005
tonight is my least favorite night of the year. it is the one night … -
0
Thursday Dec 08, 2005
tonights word, nihilism -
0
Wednesday Dec 07, 2005
nine inch nails, feb 20th in grand rapids, holy shit -
1
Saturday Nov 26, 2005
someone i know is taking advantage of some poor sap on ebay.... thoug… -
1
Wednesday Nov 23, 2005
im home for 4 days for thanksgiving.... so far, its fucking boring … -
0
Sunday Nov 20, 2005
classes are stealing my soul... and online time.... -
1
Saturday Aug 27, 2005
why must things be so painful? -
0
Wednesday Aug 17, 2005
here is half of my trip to california well, here we go end of j… -
4
Tuesday Aug 09, 2005
still in california. tomorrow we're headed to disney land... wish me…
#include <iostream.h>
void binary(int);
void main(void) {
int number;
cout << "Please enter a positive integer: ";
cin >> number;
if (number < 0)
cout << "That is not a positive integer.\n";
else {
cout << number << " converted to binary is: ";
binary(number);
cout << endl;
}
}
void binary(int number) {
int remainder;
if(number <= 1) {
cout << number;
return;
}
remainder = number%2;
binary(number >> 1);
cout << remainder;
}