输入五位同学的分数并找出最高分用循环实现输入五位同学的分数,并找出最高分,用循环实现
max = 0 for i in range(0,5): s = float(input()) if max < s: max = s print(max)