CHAPTER2-3.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:0k
- //文件名: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
- }