📄 iomanip.cpp
字号:
#include <iostream>
#include <iomanip>
using namespace std;
/*main information*/
void info()
{
cout << "excise of #iomanip";
cout << endl << endl;
}
/*source code*/
void test()
{
double a = 123.4567;
double b = -22;
double c = +7;
cout << setiosflags(ios::fixed) << setiosflags(ios::right) << setprecision(2);
cout << setw(10) << a << endl;
cout << setw(10) << b << endl;
cout << setw(10) << c << endl;
}
/*information of source code owner*/
void end()
{
cout << "\n\n\n______________\n";
cout << "xiao zhiqiang\n";
cout << "inxk@163.com\n";
cout << "Sep,2006";
getchar();
}
/*the main code*/
void main()
{
info();
test();
end();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -