Printing the correct number of decimal points with cout(用 cout 打印正确的小数点数)
问题描述
我有一个 float 值的列表,我想用带有 2 个小数位的 cout 打印它们.
I have a list of float values and I want to print them with cout with 2 decimal places.
例如:
10.900 should be printed as 10.90
1.000 should be printed as 1.00
122.345 should be printed as 122.34
我该怎么做?
(setprecision 在这方面似乎没有帮助.)
( setprecision doesn't seem to help in this.)
推荐答案
使用 ,您可以使用 std::fixed 和 std::setprecision
With <iomanip>, you can use std::fixed and std::setprecision
这是一个例子
#include <iostream>
#include <iomanip>
int main()
{
double d = 122.345;
std::cout << std::fixed;
std::cout << std::setprecision(2);
std::cout << d;
}
你会得到输出
122.34
这篇关于用 cout 打印正确的小数点数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!


