Archive

Archive for the ‘Java’ Category

Java Program to find max of three numbers – Q1

January 1, 2009 Leave a comment

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: