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):


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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

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

%d bloggers like this: