在 C 中,使用 `std::fixed` 和 `std::setprecision` 函数(定义于 `
` 头文件中)可以在输出时保留两位小数。`std::fixed` 设定输出格式为固定小数点格式,而 `std::setprecision(2)` 指定保留小数点后两位。
在C 中,如果你想在输出时保留两位小数,你可以使用std::setprecision和std::fixed这两个函数,它们都在
cpp
#include <iostream> #include <iomanip> int main() { double num = 3.141592653589793; std::cout << std::fixed << std::setprecision(2) << num << std::endl; return 0; }
在这个例子中,std::fixed设定了输出的格式为固定的小数点格式,std::setprecision(2)则设定了小数点后保留的位数为2。这样,输出结果就是3.14。
另外,你还需要注意的是,虽然std::setprecision设定了小数点后的位数,但并不会进行四舍五入。如果你需要进行四舍五入,可以使用std::round函数,这个函数在
cpp
#include <iostream> #include <iomanip> #include <cmath> int main() { double num = 3.141592653589793; num = std::round(num * 100.0) / 100.0; std::cout << std::fixed << std::setprecision(2) << num << std::endl; return 0; }
在这个例子中,我们首先把num乘以100,然后进行四舍五入,最后再除以100,这样就能得到保留两位小数的结果。输出结果仍然是3.14。
以上是c++如何保留两位小数输出的详细内容。更多信息请关注PHP中文网其他相关文章!