Write a program in C# Sharp to convert a binary number to octal
- برمجة سي شارب
- برمجة
- 2021-05-17
- MarwaMohammed
الأجوبة
using System;
public class Exercise53
{
public static void Main()
{ int n1, n,p=1;
int dec=0,i=1,j,d;
int ocno=0;
Console.Write("\n\n");
Console.Write("Convert binary number into octal:\n");
Console.Write("-----------------------------------");
Console.Write("\n\n");
Console.Write("Input a binary number :");
n = Convert.ToInt32(Console.ReadLine());
n1=n;
for (j=n;j>0;j=j/10)
{
d = j % 10;
if(i==1)
p=p*1;
else
p=p*2;
dec=dec+(d*p);
i++;
}
/*--------------------------------------------*/
i=1;
for(j=dec;j>0;j=j/8)
{
ocno=ocno+(j % 8)*i;
i=i*10;
n=n/8;
}
Console.Write("\nThe Binary Number : {0}\nThe equivalent Octal Number : {1} \n\n",n1,ocno);
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
