您好,登錄后才能下訂單哦!
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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。