注意:此页面搜索的是所有试题
题目内容
(国家开放大学程序设计基础)
写出程序的运行结果。
#include <stdio.h>
main()
{ int j;
for(j=0;j<10;j++)
{if (j%2==0) continue;
printf("%d",j);
}
}
该程序的执行结果是___________。
选择一项:
A.
2 4 6 8
B.
1 3 5 7 9
C.
0 2 4 6 8
D.
1 3 5 7
#include <stdio.h>
main()
{ int j;
for(j=0;j<10;j++)
{if (j%2==0) continue;
printf("%d",j);
}
}
该程序的执行结果是___________。
选择一项:
A.
2 4 6 8
B.
1 3 5 7 9
C.
0 2 4 6 8
D.
1 3 5 7
参考答案