#include<iostream.h>
#include<conio.h>
#include<stdio.h>
void main()
{
clrscr();
int a,c,b;
cout<<"enter three numbers";
cin>>a;
cin>>b;
cin>>c;
if(a>b && a>c)
{
cout<<a<<"is the greatest of all"<<endl;
}
else if(b>a && b>c)
{
cout<<b<<"is greatest of all"<<endl;
} … Read more