使用cout打印正确的小数点数 [英] Printing the correct number of decimal points with cout

查看:264
本文介绍了使用cout打印正确的小数点数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 float 值的列表,我想用 cout 并将它们打印两位小数。 / p>

例如:

  10.900应打印为10.90 
1.000应打印为1.00
122.345应打印为122.34

我该怎么办这个?



setprecision 似乎无济于事。)

解决方案

使用< iomanip> ,您可以使用 std :: fixed 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 


I have a list of float values and I want to print them with cout with 2 decimal places.

For example:

10.900  should be printed as 10.90
1.000 should be printed as 1.00
122.345 should be printed as 122.34

How can I do this?

( setprecision doesn't seem to help in this.)

解决方案

With <iomanip>, you can use std::fixed and std::setprecision

Here is an example

#include <iostream>
#include <iomanip>

int main()
{
    double d = 122.345;

    std::cout << std::fixed;
    std::cout << std::setprecision(2);
    std::cout << d;
}

And you will get output

122.34

这篇关于使用cout打印正确的小数点数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆