Thursday 27 March 2014

Write a Program to convert Decimal to Binary in C#.NET

Program 
using System;
class myclass
{
    static void Main()
    {
        int num;
        Console.Write("Enter a Number : ");
        num = int.Parse(Console.ReadLine());
        int quot;
        string rem = "";
        while (num >= 1)
        {
            quot = num / 2;
            rem += (num % 2).ToString();
            num = quot;
        }
        // Reversing the  value
        string bin = "";
        for (int i = rem.Length - 1; i >= 0; i--)
        {
            bin = bin + rem[i];
        }
        Console.WriteLine("The Binary format for given number is {0}",bin);

        Console.Read();
    }
}


Output

Enter a Number : 100
The Binary format for given number is 1100100

No comments:

Post a Comment