public class Demo1 {
public static void main(String[] args) {
// 定义两个整数类型变量
int a = 10;
int b = 19;
//调用方法,没有返回值,所以不需要接收
compareNum(a,b);
}
//如果一个方法是void那么我们不需要返回值,所以不要在写return 变量值
public static void compareNum(int a, int b) {
//比较a和b的大小,把大的数复制给c
if(a>b) {
System.out.println(a+"大");
}else {
System.out.println(b+"大");
}
}
}