运行以下代码,输出结果是()
a = [12, 5, 8, 22, 9] m = a[0] for i in range(1, 5): if a[i] % 2 == 0: m = a[i] print(m)
12
8
22
9