Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<iostream.h>
- #include<stdio.h>
- #include<conio.h>
- int main()
- {
- int no1,no2;
- clrscr();
- cout<<"\nEnter two no";
- cin>>no1>>no2;
- if(no1==no2)
- {
- cout<<"Value is same";
- }
- else
- {
- if(no1 >= no2)
- {
- cout<<"\nNo 1="<<no1<<"is big";
- }
- else
- {
- cout<<"\nNo 2="<<no2<<"is big";
- }
- }
- getch();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment