问题
单项选择题
下列代码执行之后,输出的结果为______。public class ex38{ public static void main(String[] args) { int x=12; int m=11; int y=13; int temp=x>yx:y; temp=temp>mtemp:m; System.out.println (temp); } }
A.1
B.12
C.13
D.11
答案
参考答案:C