C++如何保留兩位有效數字!!!!

#include <iostream> #include <iomanip> //注意這個頭文件 using namespace std; int main() { double t = 2.1356899889898; cout.precision(2); //第一種方法 cout.setf(ios::fixed); cout << t << endl; cout << setprecision
相關文章
相關標籤/搜索