C++中showpoint是什么意思

翻翻过去那场雪
浏览 1176回答 2
2回答

FFIVE

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.141630 10000 3.1416

白板的微信

科学表示法,就是小数点的形成 showpoint嘛
打开App,查看更多内容
随时随地看视频慕课网APP