1 public class Exercise { 2 3 public static void main(String[] args) { 4 5 int a=7; 6 7 int b=8; 8 9 if(a>b) 10 11 { 12 System.out.println("a是最大值"+a); 13 } 14 15 else if(a<b) 16 17 { 18 System.out.println("b是最大值"+b); 19 } 20 21 else 22 23 { 24 System.out.println("a和b相等"); 25 } 26 27 } 28 29 }
b是最大值8
时间: 2024-11-15 11:44:06