Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include"iostream.h" //used for cin>> & cout<<
- #include"conio.h" //used for clrscr() & getch()
- void main()
- {
- clrscr();
- int a,b;
- cout<<"Enter first number:";
- cin>>a;
- cout<<"Enter second number:";
- cin>>b;
- if(a==b)
- {
- cout<<"Equal";
- }
- else
- {
- if(a>b)
- {
- cout<<"Fist one is greater";
- }
- else
- {
- cout<<"Second one is greater";
- }
- }
- getch();
- }
Advertisement
Add Comment
Please, Sign In to add comment