Find elements

Java program to find middle of three number using method

Java program to find middle of three number using method

In this tutorial , we will discuss the concept of Java program to find middle of three number using method

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

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

Find middle of three number

Using Nested if statements to find the middle number of three numbers

import java.util.Scanner;
class FindMiddleNum{
public static void main (String args[]){

Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Enter three numbers: ");
int num1=scan.nextInt();//reads num1 from user
int num2=scan.nextInt();//reads num2 from user
int num3=scan.nextInt();//reads num3 from user

System.out.print("Middle number is "+middleNumber(num1,num2,num3));//calling the method

}
static int middleNumber(int num1,int num2,int num3){//method definition
    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;
    }
    
    }
    return middle;
}
}

 

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

Enter the three numbers
23
45
78
Middle number is 45

Similar post

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

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

 

Suggested for you

The operator in Java language

If statement in Java language

Data types and variables in Java language

 

 

 

Python program to find middle of three number using function
Calculate power of a number using recursion in C language
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

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

2 months ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

2 months ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

10 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

10 months ago