import java.util.Scanner; public class MinofTwo { public static void main(String[] arg) { Scanner sc = new Scanner(System.in); int n=sc.nextInt(),a,b; while(n>0) { System.out.println((a=sc.nextInt())<(b=sc.nextInt())?a:b); n--; } } }
Tutorials, tips and tricks about java programming language. Answers for many doubts about java programming language. Answering many howtos. Sample java projects and source code, java games, java programs for java practical labs.
Search This Blog
Showing posts with label display smaller number. Show all posts
Showing posts with label display smaller number. Show all posts
Java Program to Find Minimum of Two Numbers
Java Program to compare three numbers and display the minimum of two numbers. Here, we will see a simple java program to display the smaller number among two input numbers. This program takes first input as the number of sets of numbers (a set contains two numbers whose minimum is to be displayed). Then it takes numbers as sets of 2 numbers. For every pair of numbers, the java program displays the smaller number. The following java program does it. It makes use of the ternary operator (conditional operator) and Scanner class in java.
Subscribe to:
Posts (Atom)