12345678910#include <bits/stdc++.h>using namespace std;int main() { double d; d = 0.325; // 其中的数字就是保留的位数 cout << fixed << setprecision(2) << d; return 0;}