Maximum of two number in C++ by R4R Team


program:

#include< iostream>
using namespace std;
int main()
{
int a,b;
cout<<"Enter Two numbers"<< endl;
cin>>a>>b;
if(a>b)
cout<< a<<" is maximum";
else
cout<< b<<" is maximum";
return 0;
}


output-

Enter two number
5 7
7 is maximum

Enter two number
12 9
12 is maximum




Leave a Comment:
Search
Categories
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!