题型:单选题 题类: 难易度:普通
浙江省温州市十校联合体2023-2024学年高二上学期信息技术期中考试试卷
for i in range(len(s)):
if tmin <= s[i] <= tmax:
continue
c+=1
print("超出适宜温度范围的次数",c)
B、c=0;i=0while i<len(s):
if not(tmin<=s[i]<=tmax):
c+=1
i+=1
print("超出适宜温度范围的次数",c)
C、c=Ofor i in s:
if s[i]<tmin or s[i]>tmax:
c+=1
print("超出适宜温度范围的次数",c)
D、c=[0]*len(s)for i in range(len(s)):
if not(s[i]>=tmin and s[i]<=tmax):
c[i]=1
print("超出适宜温度范围的次数”,c)
试题篮