Printing the correct number of decimal points with cout(用 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 打印正确的小数点数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
织梦狗教程
本文标题为:用 cout 打印正确的小数点数


基础教程推荐
猜你喜欢
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- CString 到 char* 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05