c是输入的第三个参数吗,是的话取最大值可以这样写吧,
可能写的不太对
int one=....;
...
int two=...;
int max1= Compare(one,two);
...
int three=...;
int max2= Compare(max1,three);
public static void Compare(int a,int,b){
a=a>b?a:b;
return a;
}
我的想法是:通过输入来比较2个或者3个数的大小,下面那2个是方法重载的模式,想自动判断输入的几个就调用那个方法来进行比较然后打出结果……