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

以下do-while循环中,哪个选项不会导致无限循环?

Ado { ... } while (1);
Bdo { ... } while (x++ < 5);
Cdo { ... } while (x != 5);
Ddo { ... } while (x > 5);