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
Java Basic Programs
Comments (0)
Trackbacks (0)
Leave a comment
Trackback