首页题库练习题目详情
面向对象程序设计单选题中等

下列代码的输出是什么? int i = 0; while (i < 5) { printf("%d ", i); i++; }

A0 1 2 3 4
B0 1 2 3 4 5
C死循环
D无输出