为了账号安全,请及时绑定邮箱和手机立即绑定

C++中showpoint是什么意思

C++中showpoint是什么意思

C++
翻翻过去那场雪 2018-07-29 17:17:07
查看完整描述

2 回答

?
FFIVE

TA贡献1797条经验 获得超6个赞

C++里标准输入输出使用的格式化标志之一
如:
setf (ios_base: :showpoint)//是设置小数点模式
就是说,设定为showpoint后,在不必要的时候也显示10进数的小数点以及其后的0

参考例子:
// modify showpoint flag
#include <iostream>
using namespace std;

int main () {
double a, b, pi;
a=30.0;
b=10000.0;
pi=3.1416;
cout.precision (5);
cout << showpoint << a << '\t' << b << '\t' << pi << endl;
cout << noshowpoint << a << '\t' << b << '\t' << pi << endl;
return 0;
}

The execution of this example displays something similar to:

30.000 10000. 3.1416
30 10000 3.1416

查看完整回答
反对 回复 2018-08-02
?
白板的微信

TA贡献1883条经验 获得超3个赞

科学表示法,就是小数点的形成 showpoint嘛

查看完整回答
反对 回复 2018-08-02
  • 2 回答
  • 0 关注
  • 1175 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信