注意:此页面搜索的是所有试题
题目内容
(国家开放大学C语言程序设计)
0
______ void main()
______ {
#include<stdio.h>
______ void main()
______ {
______ int i,s;
______ for(i=1,s=0;i<10;i++) {
______ if(i%3==0) continue;
______ s+=i;
______ }
______ printf("%d\n",s);
______ }
答案: 1
填空题 (4 分) 4 分 (请按题目中的空缺顺序依次填写答案)
______ void main()
______ {
#include<stdio.h>
______ void main()
______ {
______ int i,s;
______ for(i=1,s=0;i<10;i++) {
______ if(i%3==0) continue;
______ s+=i;
______ }
______ printf("%d\n",s);
______ }
答案: 1
填空题 (4 分) 4 分 (请按题目中的空缺顺序依次填写答案)
参考答案