• 2021-04-14
    执行如下语句之后,输出的结果是______。 public class ex36 { public static void main(String[] args) { int x=-6, y=6; x=x+y--; System.out.println (x); } } A.-12 B.12 C.-1 D.0