单选题 下面的代码段执行之后count的值是什么______
int count = 1;
for (int i = 1; i <= 5; i++)
count += i;

System.out.println(count);
A.5 B.1 C.15 D.16

【正确答案】 D
【答案解析】