Q:

Write C++ program to find maximum number using switch case

0

Write C++ program to find maximum number using switch case

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.

#include <iostream>
 
using namespace std;
 
int main(){
 
   int num1, num2;
 
    //Reading two numbers from user
    cout<<"Enter two numbers to find maximum number: ";
    cin>>num1;
    cin>>num2;
 
    //Condition to check maximum number
    switch(num1 > num2)
    {
        case 0: cout<<num2<<" is Maximum number";
            break;
 
         case 1: cout<<num1<<" is Maximum number";
            break;
    }
 
    return 0;
 
}

Result:

Enter two numbers to find maximum number: 12

22

22 is Maximum number

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

<< Write C++ program to print gender Male Female prog...