C++中如何控制小数点后的精度

头文件  #include

源文件

floatvalue=324.79213;

cout << setprecision(4)<

输出结果是

324.8

 

Cout<

//加了fixed意味着固定点方式显示,所以这里的精度指的是小数位,输出结果为324.7921

 

程序源代码

// 小数点的精度问题.cpp : 定义控制台应用程序的入口点。

//

 

#include"stdafx.h"

#include

#include

usingnamespace std;

 

intmain()

{

float value = 324.79213;

cout << setprecision(4) << value << endl;

cout<

getchar();

getchar();

    return 0;

}

 

运行结果:

你可能感兴趣的:(C++)