C++ Programming : Program 8-A
Program to switch between different cases
#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(); }
This program takes in the user's choice as a screen input.
3
You chose to play...playing too much everyday is bad.
|
45 more pages in C++ Programming