欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

判断两个数是否相等(浮点数比较)

程序员文章站 2022-04-02 10:04:06
...
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    
    double a,b;
    cin>>a>>b;
    if(fabs(a-b)<1e-6)
    {
    	cout<<"相等"<<endl; 
	}
	else{
		cout<<"不相等"<<endl;
	}
    return 0;
}

 

相关标签: AcWing