自考新教材-p300_4(2)

源程序:

#include <iostream>
#include <iomanip>
#include <string>
using namespace std;

int main()
{
double x = 3;
cout << setiosflags(ios::showpoint|ios::fixed)<<x << endl;
cout << setw(4)<<resetiosflags(ios::showpoint|ios::fixed)<< x << endl;
cout << setw(5) << setiosflags(ios::showpos) << x << endl;
system("pause");
return 1;
}

运行结果:

 

posted @ 2020-02-05 09:27  bobo哥  阅读(121)  评论(0编辑  收藏  举报