首页题库练习题目详情
C语言程序设计单选题中等

以下代码执行后,变量i的最终值是多少? int i = 0; while (i < 10) { if (i == 5) break; printf("%d ", i); i++; }

A0
B5
C9
D10