get 3 numbers and find maximum number
__________________________________
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
int a,b,c,max;
cout<<"Enter your first number:"<<endl;
cin>>a;
cout<<"Enter your second number:"<<endl;
cin>>b;
cout<<"Enter your third number:"<<endl;
cin>>c;
max=a; //assiging value of a to maximum //
if(b>max) //if maximum is b then //
max=b; //maximum is b//
if(c>max) //if value of c is greater than b then//
max=c; //maximum is c//
cout<<"The greater number is:"<<max; //max value is asign in this statement//
return 0;

}