掌握方法的定义与调用关系
实验2:
编写一个方法求3个数中的最大值,并调用该方法求从命令行参数中获得的任意3个整数中的最大者。
public class Java实验2 {
public static void main(String[] args) {
int a,b,c;
a= Integer.parseInt(args[0]);
b= Integer.parseInt(args[1]);
c= Integer.parseInt(args[2]);
int result = Max(a,b,c);
System.out.println("三个数中最大的是" + result);
}
public static int Max(int a,int b,int c){
int temp = (a>b) ? a : b;
int max = (temp>c) ? temp : c;
return max;
}
}
运行结果: