请读程序:<br class="markdown_return">#include &lt;stdio.h><br class=

分类: C语言开发工程师 发布时间: 2023-11-03 11:13 浏览量: 0

请读程序:
#include <stdio.h>
Main()
{
Int num=0;
While( num <=2){
Num++; printf("%d\n",num);
}
}
上面程序的输出结果是______。
① 1 ② 1 ③ 1 ④ 1
2 2 2
3 3
4

A.①

B.②

C.③

D.④

正确答案是C