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.
我想编译一个 C++ 应用程序,但我不能使用
#include <iomanip>
有没有其他方法可以做到这一点?
信息:我需要设置精度为 5
是的,您有能力使用
cout.precision(5);
这不需要
注意:这将为整个文档设置精度。
例子:
cout.precision(5); cout << f;
您可以precision()直接在流上设置,例如:
precision()
std::cout.precision(5);