#include <iostream>
using namespace std;
int main() {
double pi = 0.1234567;
cout << "1234567890" << endl;
// cout.width(10);
cout.setf(ios::fixed);
cout << pi << endl;
}
输出
1234567890
0.123457
为什么它打印的是 0.123456 而不是 0.123456?