2016最新二级C语言考试题库及答案(程序改错专项练习--精华版)(共4页).doc
《2016最新二级C语言考试题库及答案(程序改错专项练习--精华版)(共4页).doc》由会员分享,可在线阅读,更多相关《2016最新二级C语言考试题库及答案(程序改错专项练习--精华版)(共4页).doc(4页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选优质文档-倾情为你奉上程序改错题(共15题)专心-专注-专业1、在考生文件夹下,给定程序MODI.C的功能是:求一维数组a中所有元素的平均值,结果保留两位小数。例如,当一维数组a中的元素为:10,4,2,7,3,12,5,34,5,9程序的输出应为:The aver is: 9.10 。#include #include void main() int a10=10,4,2,7,3,12,5,34,5,9,i;float aver,s; /*found*/ int aver,s; /*found*/s=a0; s = 0; for ( i=1; i10; i+) s += ai; aver
2、 = s / i; printf(The aver is: %.2fn, aver);2、在考生文件夹下,给定程序MODI.C的功能是:求二维数组a中的最大值和最小值。 例如,当二维数组a中的元素为: 4 4 34 37 3 12 5 6 5程序的输出应为:The max is: 37 The min is: 3 。 #include #include void main() int a33=4,4,34,37,3,12,5,6,5,i,j,max,min; max = min = a00; for ( i=0; i3; i+)for(j=0;j3;j+) /*found*/ for ( j=
3、1; j3; j+) if ( max aij) if (min aij) min = aij; printf(The max is: %dn, max); printf(The min is: %dn, min); 3、在考生文件夹下,给定程序MODI.C的功能是:求一维数组a中的最大元素及其下标。例如,当一维数组a中的元素为:1,4,2,7,3,12,5,34,5,9,程序的输出应为:The max is: 34,pos is: 7 。 #include #include void main() int a10=1,4,2,7,3,12,5,34,5,9,i,max,pos; max =
4、a0; pos = 0; for ( i=1; i10; i+) /*found*/if(max ai) max = ai; /*found*/pos=i;i = pos; printf(The max is: %d ,pos is: %dn, max , pos);4、在考生文件夹下,给定程序MODI.C的功能是:求二维数组a中的最小值。 例如,当二维数组a中的元素为: 4 2 34 7 3 12 5 6 5程序的输出应为:The min is: 2 。#include #include void main() int a33=4,2,34,7,3,12,5,6,5,i,j,min; min
5、 = a00;for(i=0;i3;i+) /*found*/ for ( i=1; i3; i+) for ( j=0; j aij) /*found*/min=aij;min = aij; printf(The min is: %dn, min); 5、在考生文件夹下,给定程序MODI.C的功能是:求一维数组a中所有元素的平均值。例如,当一维数组a中的元素为:10,4,2,7,3,12,5,34,5,9程序的输出应为:The aver is: 9.10 。#include #include void main() int a10=10,4,2,7,3,12,5,34,5,9,i; doub
6、le aver,s; s = a0;for ( i=1; i10; i+) /*found*/ for ( i=0; i10; i+) /*found*/s = s + ai; s = s + i; aver = s / i; printf(The aver is: %.2fn, aver);6、在考生文件夹下,给定程序MODI.C的功能是:输入一个百分制成绩,打印出五级记分成绩。考试成绩在90分或90分以上为优秀,8089分为良好,7079为中等,6069为及格,低于60分为不及格。 #include #include #include #include void main() int sc
7、ore,t; printf(Please enter a score:); do scanf(%d,&score); while(score100); t=score/10;switch(t) /*found*/ switch(score) case 10: case 9:printf(优秀!n);break; case 8:printf(良好!n);break; case 7:printf(中等!n);break; case 6:printf(及格!n);break; /*found*/ else :printf(不及格!n);default: printf(不及格!n); 7、在考生文件夹
8、下,给定程序MODI.C的功能是:输出100200之间既不能被3整除也不能被7整除的整数并统计这些整数的个数,要求每行输出8个数。#include #include #include #include void main() int i; /*found*/int n=0; int n; for(i=100;i=200;i+) /*found*/ if(i%3=0&i%7=0) if(n%8=0) printf(n);if(i%3!=0 & i%7!=0) printf(%6d,i); n+; printf(nNumbers are: %dn,n);8、在考生文件夹下,给定程序MODI.C的功
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2016 最新 二级 语言 考试 题库 答案 程序 改错 专项 练习 精华版
限制150内