c++ setprecision用法详解
浮点值可以四舍五入到若干位有效数或精度,这是出现在小数点前后的总位数。可以通过使用 setprecision 操作符来控制显示浮点数值的有效数的数量。
下面的程序显示了用不同数量的有效数来显示除法运算的结果:
程序中的第一个值显示在第 11 行,没有设置 setprecision 操作符(默认情况下,系统使用 6 个有效数显示浮点值)。后续的 cout 语句打印相同的值,但四舍五入为 5、4、3、2 和 1 个有效数。
请注意,与 setw 不同的是,setprecision 不计算小数点。例如,当使用 setprecision(5) 时,输出包含 5 位有效数,但是需要 6 个位置来显示 4.9188。
如果一个数字的值可以由少于 setprecision 指定的精度位数来表示,则操作符将不起作用。在以下语句中,dollars 的值只有 4 位数字,所以 2 个 cout 语句显示的数字都是 24.51:
与 setw 字段宽度不同的是,setprecision 的精度设置将保持有效,直到更改为其他值为止。与所有格式化操作符一样,必须包含头文件 iomanip 才能使用 setprecision。
下面的程序显示了如何组合使用 setw 和 setprecision 操作符来控制显示浮点数的方式。
下面的程序显示了用不同数量的有效数来显示除法运算的结果:
// This program demonstrates how the setprecision manipulator // affects the way a floating-point value is displayed. #include <iostream> #include <iomanip> // Header file needed to use setprecision using namespace std; int main() { double number1 = 132.364, number2 = 26.91; double quotient = number1 / number2; cout << quotient << endl; cout << setprecision(5) << quotient << endl; cout << setprecision(4) << quotient << endl; cout << setprecision(3) << quotient << endl; cout << setprecision(2) << quotient << endl; cout << setprecision(1) << quotient << endl; return 0; }程序输出结果:
4.91877
4.9188
4.919
4.92
4.9
5
程序中的第一个值显示在第 11 行,没有设置 setprecision 操作符(默认情况下,系统使用 6 个有效数显示浮点值)。后续的 cout 语句打印相同的值,但四舍五入为 5、4、3、2 和 1 个有效数。
请注意,与 setw 不同的是,setprecision 不计算小数点。例如,当使用 setprecision(5) 时,输出包含 5 位有效数,但是需要 6 个位置来显示 4.9188。
如果一个数字的值可以由少于 setprecision 指定的精度位数来表示,则操作符将不起作用。在以下语句中,dollars 的值只有 4 位数字,所以 2 个 cout 语句显示的数字都是 24.51:
double dollars = 24.51;
cout << dollars << endl; // 显示 24.51
cout << setprecision (5) << dollars << endl; // 显示 24.51
数 字 | 操作符 | 显示的值 |
---|---|---|
28.92786 | setprecision(3) | 28.9 |
21.40 | setprecision(5) | 21.4 |
109.50 | setprecision(4) | 109.5 |
34.78596 | setprecision(2) | 35 |
与 setw 字段宽度不同的是,setprecision 的精度设置将保持有效,直到更改为其他值为止。与所有格式化操作符一样,必须包含头文件 iomanip 才能使用 setprecision。
下面的程序显示了如何组合使用 setw 和 setprecision 操作符来控制显示浮点数的方式。
// This program asks for sales figures for three days. // The total sales are calculated and displayed in a table. #include <iostream> #include <iomanip> // Header file needed to use stream manipulators using namespace std; int main() { double day1, day2, day3, total; // Get the sales for each day cout << "Enter the sales for day 1: "; cin >> dayl; cout << "Enter the sales for day 2: ”; cin >> day2; cout << "Enter the sales for day 3: ”; cin >> day3; // Calculate total sales total = day1 + day2 + day3; // Display the sales figures cout << "\nSales Figures\n"; cout << "-------------\n" ; cout << setprecision (5); cout << "Day 1: " << setw(8) << day1 << endl; cout << "Day 2: " << setw(8) << day2 << endl; cout << "Day 3: " << setw(8) << day3 << endl; cout << "Total: " << setw(8) << total << endl; return 0; }程序输出结果:
Enter the sales ;for day 1: 321.57 Enter the sales for day 2: 269,60 Enter the sales for day 3: 307.00 Sales Figures ------------- Day 1: 321.57 Day 2: 269.6 Day 3: 307 Total: 898.17该程序创建的输出,按照指示,允许显示最多 5 个有效数,并以 8 个字符的字段宽度右对齐打印。
所有教程
- socket
- Python基础教程
- C#教程
- MySQL函数
- MySQL
- C语言入门
- C语言专题
- C语言编译器
- C语言编程实例
- GCC编译器
- 数据结构
- C语言项目案例
- C++教程
- OpenCV
- Qt教程
- Unity 3D教程
- UE4
- STL
- Redis
- Android教程
- JavaScript
- PHP
- Mybatis
- Spring Cloud
- Maven
- vi命令
- Spring Boot
- Spring MVC
- Hibernate
- Linux
- Linux命令
- Shell脚本
- Java教程
- 设计模式
- Spring
- Servlet
- Struts2
- Java Swing
- JSP教程
- CSS教程
- TensorFlow
- 区块链
- Go语言教程
- Docker
- 编程笔记
- 资源下载
- 关于我们
- 汇编语言
- 大数据
- 云计算
- VIP视频