C++中輸出精度的設定

C++中輸出精度的設定ios #include<iostream> #include<iomanip> using namespace std; int main() { double pi = 3.1415926; cout << setiosflags(ios::fixed) << setprecision(2) << pi << endl; system("pause"); re
相關文章
相關標籤/搜索