执行代码,total 最终是?()
total=0 i=1 while i<=10: if i%4==0: i+=1 continue total+=i i+=1 print(total)
43
45
50
55