十进制转二进制

时间:2022-11-25 20:57:20
//假定数据类型是int 

        static string GetBin(int n) { string result = ""; do { result = (n % 2 == 0 ? "0" : "1")+result; n = n / 2; } while (n > 0); return (new string('0',sizeof(int)-result.Length))+result; }