问题详情

执行如下语句之后,输出的结果是______。 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

时间:2022-01-04 12:29 关键词:

答案解析

D