//十進位制轉二進位制
messagebox.show("十進位制166的二進位制表示: " + convert.tostring(166, 2));
//十進位制轉八進位制
messagebox.show("十進位制166的八進位制表示: " + convert.tostring(166, 8));
//十進位制轉十六進製制
messagebox.show("十進位制166的十六進製制表示: " + convert.tostring(166, 16));
//二進位制轉十進位制
messagebox.show("二進位制 111101 的十進位制表示: " + convert.toint32("111101", 2));
//八進位制轉十進位制
messagebox.show("八進位制 44 的十進位制表示: " + convert.toint32("44", 8));
//十六進製制轉十進位制
messagebox.show("十六進製制 cc的十進位制表示: " + convert.toint32("cc", 16));
C 進製轉換
十進位制轉二進位制 console.writeline 十進位制166的二進位制表示 convert.tostring 166,2 十進位制轉八進位制 console.writeline 十進位制166的八進位制表示 convert.tostring 166,8 十進位制轉十六進製制 console...
C 進製轉換
由於二進位制數在c 中無法直接表示,所以所有二進位制數都用乙個字串來表示 例如 二進位制 1010 表示為 字串 1010 int d 10 十進位制轉二進位制字串 console.writeline convert.tostring d,2 輸出 1010 十進位制轉十六進製制字串 console...
C 進製轉換
將二進位制轉換成十進位制 public int converttoint string str 將二進位制轉換成八進位制 public string convertto8 string bin 將二進位制轉換成十六進製制 public string convertto16 string bin co...