C++输出流cout<<fixed<<setprecision(2)怎样才能保留小数点后的两位而不四舍五入? 谢谢!

比如19.195输出19.19而不是19.20... 比如19.195输出19.19而不是19.20 展开
 我来答
xpston008
2013-04-18 · TA获得超过365个赞
知道小有建树答主
回答量:367
采纳率:100%
帮助的人:348万
展开全部
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
double f = 19.195;
cout<<setiosflags(ios::fixed)<<setprecision(2)<<f<<endl;
}

这样就可以了 

更多追问追答
追问
这个它还是19.20,不四舍五入的
追答
抱歉看错了。
_STLP_STATIC_CONSTANT(int, left = 0x0001);
_STLP_STATIC_CONSTANT(int, right = 0x0002);
_STLP_STATIC_CONSTANT(int, internal = 0x0004);
_STLP_STATIC_CONSTANT(int, dec = 0x0008);
_STLP_STATIC_CONSTANT(int, hex = 0x0010);
_STLP_STATIC_CONSTANT(int, oct = 0x0020);
_STLP_STATIC_CONSTANT(int, fixed = 0x0040);
_STLP_STATIC_CONSTANT(int, scientific = 0x0080);
_STLP_STATIC_CONSTANT(int, boolalpha = 0x0100);
_STLP_STATIC_CONSTANT(int, showbase = 0x0200);
_STLP_STATIC_CONSTANT(int, showpoint = 0x0400);
_STLP_STATIC_CONSTANT(int, showpos = 0x0800);
_STLP_STATIC_CONSTANT(int, skipws = 0x1000);
_STLP_STATIC_CONSTANT(int, unitbuf = 0x2000);
_STLP_STATIC_CONSTANT(int, uppercase = 0x4000);
_STLP_STATIC_CONSTANT(int, adjustfield = left | right | internal);
_STLP_STATIC_CONSTANT(int, basefield = dec | hex | oct);
_STLP_STATIC_CONSTANT(int, floatfield = scientific | fixed);
一堆标识都没有找到 不四舍五入的。
转换成string吧。再取吧。只有这样了
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式