When
I was her age, I used to watch TV for hours _________.
A: on
end
B: for
end
C: till
the end
D: for
end
I was her age, I used to watch TV for hours _________.
A: on
end
B: for
end
C: till
the end
D: for
end
举一反三
- it’s time<br/>to do your homework, Jerry. <br/>Yes, Mum. I’ll turn off the TV as soon as the programme<br/>_________ . A: end B: ends C: will be end D: will end
- 下面程序的运行结果是( )。[br][/br]For i in range(1,5):[br][/br] if (i % 2) == 0:[br][/br] print('*',end='')[br][/br] else:[br][/br] continue[br][/br] print('#',end='') A: **## B: *# C: *#*# D: *
- 执行下述代码:[br][/br]for i in range(5):[br][/br] if i [= 2:<br] i -= 1[br][/br] print(i,end=',')[br][/br] elif i > 2:[br][/br] i += 1[br][/br] print(i,end=',')[br][/br]输出结果为() A: -1,0,1,4,5, B: -1,0,1,4, C: -1,0,4,1,5, D: -1,1,0,5,4,
- 执行下述代码:[br][/br]for i in range(5):[br][/br] if i [= 2:<br] i -= 1[br][/br] print(i,end=',')[br][/br] elif i > 2:[br][/br] i += 1[br][/br] print(i,end=',')[br][/br]输出结果为() A: -1,0,1,4,5, B: -1,0,1,4, C: 1,0,4,1,5, D: -1,1,0,5,4,
- 读程序题: for i in range(4):[br][/br] if i==3:[br][/br] break[br][/br] print(i ,end="")[br][/br]print(i)