例如,输入n=10,要求输出 0x0000000A;
C++: sprintf( buffer, "0x%08X", n);
C#: string s = string.Format( "0x{0:X08}", n);