#include<iostream>
using namespace std;
int main()
{
cout<<"\n \t \t\t Enter (a) > (b )\n\n ";
float a , b ;
cout<<"\n \t Enter the first number a : ";
cin>> a;
cout<< " \n\t Enter The second number b : " ;
cin>>b;
if (a>b)
{
cout<<" \n The largest number is a = "<<a<<endl;
}
else
{
cerr<<"\n \t\t There is Error ";
cout<<"\n \t \t ther is error ";
}
cin.get();
return 9 ;
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)