2010年2月17日 星期三

[C++] cout 控制浮點數輸出位數

#include <iomanip>  // setprecision 使用的函式庫

// 輸出 5.68 自動四捨五入
cout << setprecision(3) << 5.678 << endl;

// 輸出 5.68 fixed...控制小數點後的位數
cout << fixed << setprecision(2) << 5.678<< endl;



沒有留言: