下列语句的执行结果是10: i = 0 while i >;10: i += 2 print(i)
举一反三
- 执行下列语句后,其输出结果为: 。 >>> i = 1 >>> while i < 10: if i % 2 == 0: print(i,end=' ') i += 1
- 下列语句的执行结果是: result = 0 i = 1 while result <; 10: result += i i += 1 if i >; 2: break print(result) A: 3 B: 5 C: 7 D: 10
- 执行下列语句后输出结果是( ) i=-2 while i<0: i*=i print (i) A: 2 B: -2 C: 4 D: -4
- 下列语句的执行结果是: for i in range(10): if i % 4 == 0: print(i) continue break A: 0 B: 2 C: 4 D: 8
- 执行以下语句,输出结果是() i = -2 while i<0: i*=i print(i) A: 报错 B: 0 C: -1 D: 4