首页题库练习题目详情
计算机基础与程序设计单选题中等

以下代码的执行结果是? int x = 5; if (x < 10) { printf("x is less than 10"); } else { printf("x is greater or equal to 10"); }

0{ "key": "A", "text": "x is less than 10" }
1{ "key": "B", "text": "x is greater or equal to 10" }
2{ "key": "C", "text": "输出两个语句" }
3{ "key": "D", "text": "无输出" }