标签:using str namespace http lag c++ names ima div
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进制输出,且字母大写 }
运行结果:
C++入门经典-例2.9-输出十六进制数以及大写的十六进制数
标签:using str namespace http lag c++ names ima div
原文地址:http://www.cnblogs.com/lovemi93/p/7505290.html