Java Program to find minimum between three numbers using ladder if...else...if.













Java Program to find minimum between three numbers using ladder if...else...if.

Java Tutorial Java Exercises Data Structures











Java Program to find minimum between three numbers using ladder if...else...if.


/** * Java Program to find minimum between three numbers using ladder if...else...if. */ import java.util.Scanner; class Test { public static void main(String[] args) { int x, y, z,min=0; Scanner p=new Scanner(System.in); /* Input three numbers from user */ System.out.print("Enter x value:"); x=p.nextInt(); System.out.print("Enter y value:"); y=p.nextInt(); System.out.print("Enter y value:"); z=p.nextInt(); if((x < y) && (x < z)) { /* If x < y and x < z */ min = x; } else if(y < z) { /* If x is not < y and y < z */ min = y; } else { /* If x is not < y and y is also not < z */ min = z; } /* Print maximum number */ System.out.println("Minimum among all three numbers = "+min); } }




Output:

Enter x value:40 Enter y value:20 Enter y value:180 Minimum among all three numbers = 20