Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为用户输入的双精度类型数据设置两个十进制数字,并且我有正确的头文件,但显示的结果只有整数,没有小数?我真的很感激任何帮助。
您可能希望使用以下格式。
cout << setprecision(# of places past decimal) << fixed << varName << endl;
固定输入输出操纵器告诉它您正在设置小数点后位数的精度。