[单选题]写出程序的运行结果。 #include <stdio.h> main() { int j;for(j=0;j<10;j++) {if (j%2==0) continue; printf(%d,j); } } 该程序的执行结果是___________。
国开题库
|
2023-10-27 03:36:24
|
24
[单选题]写出程序的运行结果。 #include <stdio.h> main() { int j;for(j=0;j<10;j++) {if (j%2==0) continue; printf(%d,j); } } 该程序的执行结果是___________。

A.1 3 5 7 9
B.1 3 5 7
C.2 4 6 8
D.0 2 4 6 8
查看答案

国家开放大学

形成性考核

您可能感兴趣的试题
TOP