สมมติว่าเราต้องการแปลงตัวเลข 48 เป็นเลขฐานสอง
ขั้นแรก ตั้งค่าและใช้ตัวดำเนินการ / และ % และวนซ้ำจนกว่าค่าจะมากกว่า 1 −
decVal = 48;
while (decVal >= 1) {
val = decVal / 2;
a += (decVal % 2).ToString();
decVal = val;
} ตอนนี้แสดงทุกบิตของไบนารีตามที่แสดงในรหัสที่สมบูรณ์ -
ตัวอย่าง
using System;
using System.Collections.Generic;
using System.Text;
namespace Demo {
class MyApplication {
static void Main(string[] args) {
int decVal;
int val;
string a = "";
decVal = 48;
Console.WriteLine("Decimal = {0}", decVal);
while (decVal >= 1) {
val = decVal / 2;
a += (decVal % 2).ToString();
decVal = val;
}
string binValue = "";
for (int i = a.Length - 1; i >= 0; i--) {
binValue = binValue + a[i];
}
Console.WriteLine("Binary = {0}", binValue);
Console.Read();
}
}
} ผลลัพธ์
Decimal = 48 Binary = 110000