把一个 int 数字 n 格式化成16进制的字符串(前面补零成0位)时间:2022-01-14 20:59:57 例如,输入n=10,要求输出 0x0000000A; C++: sprintf( buffer, "0x%08X", n); C#: string s = string.Format( "0x{0:X08}", n);