1:代码如下:
#include "stdafx.h" #include <iostream> #include <iomanip> using namespace std; void main() { int i = 0x2F, j = 255;//0x代表16进制, cout << i << endl;//以10进制输出 cout << hex << i << endl;//以16进制输出 cout << hex << j << endl;//以16进制输出 cout << hex << setiosflags(ios::uppercase) << j << endl;//以16进制输出,且字母大写 }
运行结果: