Question: Rewrite the following C++ program by converting its if..else.. statements into switch... case.... The logic and outputs of the rewritten program must remain unchanged.
Rewrite the following C++ program by converting its if..else.. statements into switch... case.... The logic and outputs of the rewritten program must remain unchanged. #include using namespace std; int main() int input: cout < > input; if (input == 0) cout < < "Off" < < endl; else if (input == 1) cout < < "Low" < < endl; else if (input == 2) cout < < "Medium" < < endl; else if (input == 3) cout < < "High" < < endl; else cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
