Tech Study

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

Introduction

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

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

TaggedWrite C Program to find maximum number using switch case

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more