(单选题, )下列程序共输出( )个值: age = 23 start = 2 if age % 2 != 0: start = 1For x in range(start, age + 2, 2): print(x)
A.10
B.16
C.12
D.14
正确答案是C