第25题: [单项选择]A. At home. B. On the street. C. At the airport. D. In a hotel. 参考答案:D 答案解析:[解析] W: I’d like to reserve a room. M: Which type of room would you prefer A double or a sin
第27题: [单项选择]下面程序段的输出结果是( )。 public class Test { public static void main (String[] args) { for ( int a=0;a<10;a++) { if (a==5) break; System.out.println(a); } } } A. 01234 B. 6789 C. 012346789 D. 5 参考答案:A 答案解析:[解析] 题目中输出语句位于循环体内,而在if语句外,所以a<5时执行输出语句。当a=5时,退出循环,结束程序的执行。