您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
1.setprecision(n);
默认设置输出的数字的总位数为n,包含整数和小数部分。
2.setiosflags(ios::fixed)
默认输出6位,必须与setprecision(n)配合使用,用来控制小数位数,不够补0
3.resetiosflags(ios::fixed);
取消精度的设置
- #include <iostream>
- #include <iomanip>
- using namespace std;
- int main () {
- double f =3.14159;
- cout << setprecision (5) << f << endl; //3.1416
- cout << setprecision (9) << f << endl; //3.14159
- cout << fixed<<setprecision (5) << f << endl; //3.14159
- cout <<fixed<< setprecision (9) << f << endl; //3.141590000
- cout<<f<<endl; //3.141590000
- cout<<resetiosflags(ios::fixed)<<setprecision(9)<<f;//3.14159
- return 0;
- }
需注意在精度的设置是全局作用,setiosflags之后要resetiosflags还原,位数也是如此!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。