import random
a= [0]*6
for i in range(1,6) :
a[i]=random.randint(1,9)
if i%2==a[i]%2:
a[i]+=1
else:
a[i]+=a[i-1]
执行该程序段后,a的值不可能的是( )