#include <iostream>
using namespace std;
int main () {
float floating_point1, floating_point2;
cout << "Enter the first floating point: "; cin >> floating_point1;
cout << "Enter the second floating point: "; cin >> floating_point2;
if (floating_point1 == floating_point2) {
cout << "equal" << endl;
}
return 0;
}
Comments
Leave a comment