• 2022-06-06
    int a = 2; System.out.println(a++); System.out.println(a); System.out.println(++a); 程序的输出结果是 ( )
    A: 2 3 4