给出以下 Python 代码,请问程序输出值的个数是:( )
age = 23
start = 2
if age % 2 != 0:
start = 1
n = 0
for x in range(start, age + 2, 2):
n += 1
print(n)
10
12
14
16