f0403.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0403.cpp
  3. // 浮点数的比较
  4. //=====================================
  5. #include<iostream>
  6. #include<cmath>
  7. using namespace std;
  8. //-------------------------------------
  9. int main(){
  10.   double d1=123456789.9*9;
  11.   double d2=1111111109.1;
  12.   cout<<(d1==d2 ? "samen" : "not samen");
  13.   cout<<(abs(d1-d2)<1e-05 ? "samen" : "not samen");
  14.   cout.precision(9);
  15.   cout<<fixed<<d1<<"n"<<d2<<"n";
  16. }//====================================
  17.