给你一个浮点数f,输出它保留n位小数(四舍五入)后的结果。 ... int main() { cin >> f >> n; cout << fixed << setprecision(n) << f << endl; return 0; }.
確定! 回上一頁