Find elements

C++ program to find middle of three number using function

C++ program to find middle of three number using function

In this tutorial, we will discuss the concept of C++ program to find middle among three numbers using function

This post describes how to find the middle number among three numbers using if statements in C++ language.

There are many ways to find the middle number of the three numbers. but here, we mainly focus if-else-if statements to find the middle number.

 

Find middle number

 

Using Nested if statements  to find the middle

Program

#include <iostream>
#include <conio.h>
using namespace std;

int middleNumber(int,int,int);
int main()
{
    int num1,num2,num3;
    cout<<"Enter the three numbers\n";
    cin>>num1>>num2>>num3;//takes input from user
    cout<<"Middle number is " <<middleNumber(num1,num2,num3);
    getch();
    return 0;
}

int middleNumber(int num1,int num2,int num3){
    int middle=0;
    if(num1>num2){
        if(num2>num3){
        middle=num2;
    }
    else if(num3>num1){
        middle=num1;
    }
    else{
        middle=num3;
    }
    }

    else{

        if(num2<num3){
        middle=num2;
    }
    else if(num3<num1){
        middle=num1;
    }
    else{
        middle=num3;
    }

}

}

 

When the above code is executed, it produces the following results

Enter the three numbers
45
56
78
Middle number is 45

Similar post

Java program to find the middle of three number using Method

C code to find the middle of three number using the function

C++ code to find the middle of three number using the function

Python code to find the middle of three number using the function

Java code to find middle of three numbers

C code to find middle of three numbers

C++ code to find middle of three numbers

Python code to find middle of three numbers

Java code to find largest of three numbers in an array

Java code to find smallest of three numbers in an array

C code to find the middle of three number using the function

C++ code to find the middle of three number using the function

 

Suggested for you

The operator in C++ language

If statement in C++ language

Nested if statement in C++ language

Data type in C++ language

Variable in C++ language

 

Operator in C language

If statement in C language

Data type in C language

Variable in C language

 

The operator in Python language

If statement in Python language

function in Python

Data types and Variable in Python

 

 

 

 

 

Python program to find smallest of three numbers
C program to find middle among three number using function
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

3 weeks ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

2 months ago

Java program to check odd or even using recursion

Java program to check odd or even using recursion In this tutorial, we discuss a…

2 months ago