日期:2011-03-22 13:54:00 来源:本站整理
<b>浮点数的格局化</b>[VC/C++编程]
本文“<b>浮点数的格局化</b>[VC/C++编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
string do_fraction(long double value, int decplaces=3)
char DECIMAL_POINT='.';
int prec = numeric_limits<long double>::digits10; // 18
out.precision(prec);//override default
out << value;
string str= out.str(); //extract string from stream
size_t n=str.find(DECIMAL_POINT);
if ((n!=string::npos) //is there a decimal point?
&& (str.size()> n+decplaces)) //is it followed by at
//least decplaces digits?
{
str[n+decplaces]='';//overwrite first redundant digit
}
str.swap(string(str.c_str()));//get rid of spurious
//characters after the nul
return str;
}
如
cout << do_fraction(123456789.69999001) << endl;
cout << do_fraction(12.011) << endl;
输出
123456789.69
12.01
以上是“<b>浮点数的格局化</b>[VC/C++编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论