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

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more