#连续收集4个数,将收集到的正数进行相加 b=0 for i in range(4): #your code here a= get() if a > 0: b = b + a #条件为真时执行的代码 say(b)