运行以下程序,输出结果为?( )
s = 0
l = [1, 2, 3, 4, 5]
for i in l:
if i == 2:
continue
if i == 4:
break
s = s + i
print(s)
15
13
4
10