运行下列代码段,输出结果中包含1的是( )。
A: while True:print(1)
B: while False:print(1)
C: while 1:print(1)
D: while 0:print(1)
A: while True:print(1)
B: while False:print(1)
C: while 1:print(1)
D: while 0:print(1)
举一反三
- 下面代码中输出结果为0、1、2三个数字的有(_____)。 A: for i in range(3): print(i) B: i=1 while i<3: print(i) i+=1 C: i=3 while i>1: i=i-1 print(3-i) D: for i in range(3,0,-1): print(3-i)
- 下列程序段的输出结果是_______。 i = 1 while i<=3: print("yes") i += 1 else: print("no")
- 下面代码:print(0.1+0.2==0.3)的输出结果是() A: while B: 0 C: –1 D: False
- 下面代码的输出结果是()。print(0.1+0.2==0.3) A: False B: –1 C: 0 D: while
- 下面代码:print(0.1+0.2==0.3)的输出结果是() A: while B: 0 C: –1 D: False