OOPc using C++

With this blog I want to share my knowledge of OOPs and C++. I Hope this can quench your thirst for learning.Any suggestions and comments are welcome.
Showing posts with label Switch statement. Show all posts
Showing posts with label Switch statement. Show all posts

Tuesday, August 3, 2010

Program 4- Program to switch between different cases.


This program takes in the user's choice as a screen input.
Depending on the user's choice, it switches between the different cases.
The appropriate message is then outputted using the 'cout' command.

#include <iostream.h>
#include <conio.h>

int main( )
{
        clrscr( );
        int choice;
        cout << "1. Talk" << endl;
        cout << "2. Eat" << endl;
        cout << "3. Play" << endl;
        cout << "4. Sleep" << endl;
        cout << "Enter your choice : " << endl;
        cin>>choice;

       switch(choice)
       {
            case 1 : 
            cout << "You chose to talk...talking too much is a bad habit." << endl;
            break;
           case 2 : 
           cout << "You chose to eat...eating healthy foodstuff is good." << endl;
           break;
           case 3 : 
           cout << "You chose to play...playing too much everyday is bad." << endl;
           break;
          case 4 : 
          cout << "You chose to sleep...sleeping enough is a good habit." << endl;
          break;
         default : 
         cout << "You did not choose anything...so exit this program." << endl;
       }
getch();
}

Sample Input:
3

Sample Output:



You chose to play...playing too much everyday is bad.