Home > Java > Java Program to find max of three numbers – Q1

Java Program to find max of three numbers – Q1


Q1: Java Program to find max of three numbers

class MaxThree{
	public static void main(String args[]){
		int a = Integer.parseInt(args[0]);
		int b = Integer.parseInt(args[1]);
		int c = Integer.parseInt(args[2]);
		int x;
		x = ((a>b) && (a>c)) ? a : ( (b > a) && (b > c) ) ? b : c;
		System.out.println(x + " is largest.");
	}
}

… from College notes (BCA/MCA assignments):


Categories: Java Tags:
  1. No comments yet.
  1. No trackbacks yet.

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.