#include<iostream.h>
#include<conio.h>
void main()
{
int a,b,big;
clrscr();
cout<<"Enter two numbers ";
cin>>a>>b;
big=(a>b)?a:b;
cout<<"Biggest number is "<<big<<end1;
getch();
}
#include<conio.h>
void main()
{
int a,b,big;
clrscr();
cout<<"Enter two numbers ";
cin>>a>>b;
big=(a>b)?a:b;
cout<<"Biggest number is "<<big<<end1;
getch();
}
No comments:
Post a Comment