方法的定义和调用
package zaiyang.method;
public class Demo02 {
public static void main(String[] args) {
int max = max(100,10);
System.out.println(max);
}
//比大小
public static int max(int num1,int num2){
int result = 0;
if (num1==num2){
System.out.println("num1==mum2");
return 0;//终止方法
}
if (num1>num2){
result = num1;
}else {
result = num2;
}
return result;
}
}