Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about How to write Program switch between different cases in cpp .So let’s go to our topic
#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.
Depending on the user’s choice, it switches between the different cases.The appropriate message is then outputted using the ‘cout’ command.
INPUT :
3
OUTPUT :
You chose to play…playing too much everyday is bad
Related Post:-
So I hope that you learn about the this program And if you have any more queries about progrmming ,web Devlopment ,tech,computer relegated then feel free to discuss your problem in the comment section.Thank you so much and come back for more updates about Techgsr.co .