# 2.3 实型（浮点型）

**作用：**&#x7528;于表示小数

浮点型变量分为两种:

1. 单精度float
2. 双精度double

两者 区别在于表示的有效数字范围不同

|  数据类型  | 占用空间 |    有效数字范围   |
| :----: | :--: | :---------: |
|  float |  4字节 |    7位有效数字   |
| double |  8字节 | 15\~16位有效数字 |

&#x20;**示例：**

```
int main() {

	float f1 = 3.14f;
	double d1 = 3.14;

	cout << f1 << endl;
	cout << d1<< endl;

	cout << "float  sizeof = " << sizeof(f1) << endl;
	cout << "double sizeof = " << sizeof(d1) << endl;

	//科学计数法
	float f2 = 3e2; // 3 * 10 ^ 2 
	cout << "f2 = " << f2 << endl;

	float f3 = 3e-2;  // 3 * 0.1 ^ 2
	cout << "f3 = " << f3 << endl;

	system("pause");

	return 0;
}
```
