首页题库练习题目详情
计算机软件基础单选题中等

以下C语言代码片段中,循环的终止条件是什么? int i = 0; while (i < 5) { printf("%d ", i); i++; }

Ai < 5
Bi == 5
Ci > 5
Di >= 5