chapter2-3.cpp
来自「是stl程序员开发指南的源码」· C++ 代码 · 共 10 行
CPP
10 行
//文件名:CHAPTER2-3.cpp
#include <iostream.h>
void main()
{
cout.setf(ios::hex,ios::basefield);
cout<<cout.flags(ios::showpoint)<<endl; //显示64
cout<<cout.flags(ios::showbase)<<endl; //显示256
cout<<cout.flags(); //显示128
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?