a=[3,5,1,2,4]
min = a[0]
s = 0
for i in range(1,5):
if a[i] < min:
min = a[i]
s = s + min print(s)
执行该程序段后,变量 s 的值为( )
微信扫码预览、分享更方便