#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 の代わりにそれを出力するのはなぜですか?