Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include"iostream.h"
- #include"conio.h"
- void main()
- {
- clrscr();
- int a;
- cin>>a;
- switch(a)
- {
- case 1: cout<<"One"; break;
- case 5: cout<<"Five"; break;
- default: cout<<"Not found";
- }
- getch();
- }
Advertisement
Add Comment
Please, Sign In to add comment