C#将十进制转换为八进制数

using System;

class Demo {
   public static void Main() {
      int decVal, quot, i = 1, j;
      int[] octalVal = new int[80];

      decVal = 40;
      quot = decVal;
      Console.WriteLine("Decimal Number:{0}",decVal);

      while (quot!= 0) {
         octalVal[i++] = quot % 8;
         quot = quot / 8;
      }
      Console.Write("Octal Number: ");
      for (j = i - 1; j > 0; j--)
         Console.Write(octalVal[j]);
         Console.Read();
   }
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265919.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论