下列循环体的执行次数是()。 #include main() {int i,j; for(i=0,j=1;i<j+1;i+=1,j--) p
18 查阅
下列循环体的执行次数是( )。
#include<stdio.h>
main()
{int i,j;
for(i=0,j=1;i<j+1;i+=1,j--)
printf("%d\n",j);
}
A.3
B.2
C.1
D.0
参考答案: