This is a C# Program to convert decimal to binary.
This C# Program Converts Decimal to Binary.
Here the number in decimal form is obtained and is it repeatedly divided by 2 and its binary form is obtained.
Here is source code of the C# Program to Convert Decimal to Binary. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/* * C# Program to Convert Decimal to Binary */ 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; } 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(); } }
This C# program, we are declaring the variable ‘num’ and ‘bin’ Integer type. Declare the variable out type string which will assign the value ‘nothing’. Using while loop check the value of ‘num’ variable is greater than 0 and also greater than 1.
The variable bin will get the value of the operation, the variable num value % 2; the Mod is used to obtain a division residue. Divide the numbers to indicate next to the symbol %, this case the number 2, because 2 is the binary numbers base. Then after obtaining the first residue the variable ‘num’ will get its own value between 2.
Convert the value of ‘bin’ variable into String type to achieve the concatenation. The variable “out” is going to get the bin’s value (which contain the division residue) concatenated with the same variable “out” to keep accumulating the values of the others residues that generates while the “WHILE” runs. Finally assign to the textbox txt_bin, the value of the variable “out”.
Enter the Number : 3 Binary Format for the Given Number is : 11
Sanfoundry Global Education & Learning Series – 1000 C# Programs.
- Get Free Certificate of Merit in C# Programming
- Participate in C# Programming Certification Contest
- Become a Top Ranker in C# Programming
- Take C# Programming Tests
- Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Practice Computer Science MCQs
- Apply for Computer Science Internship
- Practice MCA MCQs
- Buy Computer Science Books
- Buy MCA Books