第19240题 单选
以下C++代码执行后的输出结果是?
int i, tnt = 1;
for (i = 0; i < 5; i++)
    tnt *= i;
printf("%2d%2d\n", tnt, i);
A

24 5

B

10 5

C

0 4

D

0 5