赞
踩
# 判断成绩数组中及格人数
def if_pass(num_list):
count = 0
for i in range(len(num_list)):
if int(num_list[i])>= 60 :
count += 1
return count
num_list = input()# 输入数据串,空格分开
num_list = num_list.split(" ")# 对数据串分割,得到数组
print(if_pass(num_list))# 输出及格总数
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。