编写一个JAVA程序,其中有个方法求2个数中的较大值;在主程序中调用该方法求3个数中的最大值

日期:2012-11-06 21:30:45 人气:1

编写一个JAVA程序,其中有个方法求2个数中的较大值;在主程序中调用该方法求3个数中的最大值

这个很容易的,也可以自己想想嘛。 public class testMax { public static int max(int a,int b){ return a>b?a:b; } public static void main(String[] args) { int a=1,b=2,c=3,MAX=0; MAX=max(a,b); MAX=max(MAX,c); System.out.println(MAX);//输出最大值
    A+
热门评论