#include <iostream>
#include <iomanip>
using namespace std;
int main () {
cout << fixed << setprecision(3);
cout << 0.5 << endl;
}
這樣就會輸出 0.500 了。