码迷,mamicode.com
首页 > 其他好文 > 详细

自考新教材-287

时间:2020-01-27 15:18:48      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:flag   com   src   namespace   mes   name   info   main   http   

源程序:

//程序7-8

#include <iostream>

#include <iomanip>

using namespace std;

int main()

{

double x = 12.34;

cout << "1)" << setiosflags(ios::scientific | ios::showpos) << x << endl;

cout << "2)" << setiosflags(ios::fixed) << x << endl;

cout << "3)" << resetiosflags(ios::fixed) << setiosflags(ios::scientific | ios::showpos) << x << endl;

cout << "4)" << resetiosflags(ios::showpos) << x << endl;     //清除要输出正号的标志

system("pause");

return 0;

}

运行结果:

技术图片

自考新教材-287

标签:flag   com   src   namespace   mes   name   info   main   http   

原文地址:https://www.cnblogs.com/duanqibo/p/12235997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!