1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
#include <iostream>// 输出流库 using namespace std;//使用标准命名空间 //课程:2.3 浮点型 /* 用于表示小数,浮点型变量分为两种: 1、单精度 float 4字节 7位有效数字 2、双精度 double 8字节 15~16位有效数字 */ int main() { float f1 = 3.14f;//如果后面没加f 默认为double再转换为float double d1 = 3.14; cout << "f1的小数为:" << f1 << endl; cout << "d1的小数为:" << d1 << endl; //取出类型长度 cout << "f1长度为:" << sizeof(f1) << endl; cout << "d1长度为:" << sizeof(d1) << endl; //科学计算 float f2 = 3e2; float f3 = 3e-2; cout << "f2的小数为:" << f2 << endl; cout << "f3的小数为:" << f3 << endl; system("pause");// 控制台暂停,等待下一步操作 return 0;// 结束返回值:0 } |
02.3 C++浮点型
未经允许不得转载:Ai分享 » 02.3 C++浮点型