Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: #include<iostream.h> #include<conio.h> void main() { int n; clrscr(); cout<<"\nEnter the number...; cin>>n; switch(n) { case1:cout<<"\nThe number is one";break; case2:cout<<"\nThe number is two";break; case3:cout<<"\nThe number is three";break; default:cout<<"\nInvalid number"; } getch(); } |
The End.