f0403.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f0403.cpp
- // 浮点数的比较
- //=====================================
- #include<iostream>
- #include<cmath>
- using namespace std;
- //-------------------------------------
- int main(){
- double d1=123456789.9*9;
- double d2=1111111109.1;
- cout<<(d1==d2 ? "samen" : "not samen");
- cout<<(abs(d1-d2)<1e-05 ? "samen" : "not samen");
- cout.precision(9);
- cout<<fixed<<d1<<"n"<<d2<<"n";
- }//====================================