Decimal 2 Binary

By DimitriC at February 21, 2012 11:23
Filed Under: Programming, tips & tricks

From time to time I get a fun question. One of them was this: Please provide a list with powers of 2 accompanied by their binary representation, for let’s say up to 50.

 

First version:

 

   1:  int temp=1;
   2:   
   3:  for(int i = 1; i<=50; i++)
   4:  {
   5:      Console.WriteLine(i+": Dec: "+temp+" - Bin: "+Convert.ToString(temp,2));
   6:      temp = temp*2;
   7:  }

 

This gives the following result:

 

image

 

Here we bump into the maximum of information that can be held by an integer. So for going up to 50, it suffices to change the type of the decimal number to long:

 

   1:  long temp=1;
   2:   
   3:  for(int i = 1; i<=50; i++)
   4:  {
   5:      Console.WriteLine(i+": Dec: "+temp+" - Bin: "+Convert.ToString(temp,2));
   6:      temp = temp*2;
   7:  }

image

So, I could answer the question. But the same problem occurs when you come to the limit of the long-data type (which is at 64).

 

Double, float or decimal are not supported by the Convert.ToString(…) implementation where you can define the toBase-parameter.

Comments (1) -

2/28/2012 9:15:25 AM #

Your blog is outrageous!  I mean, Ive never been so entertained by anything in my life!  Your vids are perfect for this.  I mean, how did you manage to find something that matches your style of writing so well?  Im really happy I started reading this today.  Youve got a follower in me for sure!

Limpard Dwear United States

2/29/2012 3:54:45 AM #

Great Web Site Ya Got Here. Very Interesting Subject For A Blog Keep Up The Great Work!

NagraVisionThree.blogspot.com United States

3/2/2012 9:02:50 AM #

This post is amazing thanks for sharing it with us.

disaster United States

3/6/2012 9:55:39 AM #

Really Amazing Blog You Have Here! Very Informative Subject For A Post Keep Up The Amazing Work!

Dirty Computer United States

4/7/2012 7:57:13 PM #

how to increase semen volume

how to increase volume of seminal fluid United States

4/19/2012 2:57:09 PM #

vigrx plus

vigrx United States

4/22/2012 3:28:38 AM #

ibs treatment

treatment for irritable bowel syndrome United States

Comments are closed