C++中精度的控制

本文通过两个方法介绍如何在C++中控制浮点数的输出精度,并演示了使用setprecision与setiosflags(ios::fixed)的不同效果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#include<iostream>
#include<iomanip>
using namespace std;

void main()
{
    double f = 3.1415926535;
    cout << "Enter the huashi temperature:" << endl;
    //-----------------方法一-------------------
    /*  cout.precision(3);      //调用cout的precision()函数设置或返回当前要被显示的浮点变量的位数(即浮点数的数字个数)
    cout << fixed;      //fixed输出小数点后面三位有效数字
    cout << "The Celsius temperature is: ";
    cout << f << endl;      //输出小数点前后共三位有效数字
    cout << f << endl;
    */
    //----------------方法二--------------------
    //使用setprecision()操作符,包含在在iomanip头文件中
    cout << f << endl;              //默认输出六位
    cout << setprecision(3);        //单用setprecision是设置显示的有效数字位数。
    cout << setprecision(0) << f << endl;
    cout << setprecision(1) << f << endl;
    cout << setprecision(2) << f << endl;
    cout << setprecision(3) << f << endl;
    cout << setprecision(4) << f << endl;
    cout << "---------------------------------" << endl;
    cout <<setiosflags(ios::fixed); //配合setprecision就是设置小数精度(小数点后的有效位数)
    //cout << fixed;                //作为cout的一个参数是setiosflags(ios::fixed)的简写形式,等效于上一行
    cout << setprecision(0) << f << endl;
    cout << setprecision(1) << f << endl;
    cout << setprecision(2) << f << endl;
    cout << setprecision(3) << f << endl;
    cout << setprecision(4) << f << endl;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值