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

以下代码的输出结果是什么? int i = 1; do { printf("%d ", i); i++; } while (i <= 5);

A1 2 3 4 5
B1 2 3 4 5 6
C1 2 3 4 5 6 7
D循环无法执行