收藏 分享(赏)

计算机二级C语言上机题库及答案(100套).doc

上传人:weiwoduzun 文档编号:2541822 上传时间:2018-09-21 格式:DOC 页数:484 大小:3.31MB
下载 相关 举报
计算机二级C语言上机题库及答案(100套).doc_第1页
第1页 / 共484页
计算机二级C语言上机题库及答案(100套).doc_第2页
第2页 / 共484页
计算机二级C语言上机题库及答案(100套).doc_第3页
第3页 / 共484页
计算机二级C语言上机题库及答案(100套).doc_第4页
第4页 / 共484页
计算机二级C语言上机题库及答案(100套).doc_第5页
第5页 / 共484页
点击查看更多>>
资源描述

1、计算机二级 c 语言上机题库及答案内部资料,切勿外传!填空题.第 1 套请补充 FUN 函数, FUN 函数的功能是求 10 的阶乘。 注意:部分源程序给出如下。请勿改动主函数 main 和其他函数中的任何内容,仅在 fun 函数的横线上填入所编写的若干表达式或语句。 试题程序:#include long fun(int n)if ( 1 )return (n*fun( 2 ); return 3 ;main()printf(“10!=%ldn“, fun(10);第 1 处 填 空 : n1 或 1#include /*found*/ IsPrime(int n);int i, m; m =

2、 1;/*found*/ for (i=2; i#include #include int fun(int score,int m, int below)main()int i,n,below9;int score9=10,20,30,40,50,60,70,80,90;FILE *out; n=fun(score,9,below);printf(“nBelow the average score are :“);out=fopen(“out.dat“, “w“); for(i=0;i int fun(int n);main()int i, n = 0; scanf(“%d“, for (i=

3、0; i#include void fun(char *p, char *q, char *c)/*found*/int k = 1;/*found*/ while (*p != *q)if (*p #include void fun(int *a,int *n)main()int aa1000,n,k; FILE *out; fun(aa,out=fopen(“out.dat“, “w“);for(k=0;k#include #include #define N 81 void fun(char *s)int i, n = strlen(s)-1; char t;for (i=0; i#in

4、clude void fun(char *s)int i, j;/*found*/for (i=0, j=0; si!=0; i+)if (sj=0 FILE *out;printf(“nPlease enter an integer number:n“); scanf(“%d“,fun(x,aa, for(i=0;idouble fun(int n)int i;double sum = 0.0; for (i=1; 1 ; i+)if (i%3= 0 2 i%7= 0) sum += 3 /i;return sum;main()int n; double s;printf(“nInput n

5、: “); scanf(“%d“, s = fun(n); printf(“nns=%fn“, s);第 1 处 填 空 : i=i第 2 处 填 空 : |第 3 处填空: 1.0 或 (double)1改错题下 列 给 定 程 序 中 , fun 函数的功能是:分别统计字符串中大写字 母 和 小 写 字 母 的 个 数 。 例 如 , 给 字 符 串 s 输 入 : AaaaBBb123CCccccd,则 应 输 出 结 果 : upper=6,lower=8请改正程序中的错误,使程序能得出正确的结果。 注 意 : 不 要 改动 main 函 数 , 不 得 增 行 或 删 行 , 也 不

6、 得 更 改程序的结构! 试题程序:#include #include /*found*/void fun(char *s, int a, int b)while (*s)/*found*/ if (*s=A int bb26, k; FILE *out;printf(“nPlease enter a char string:“);scanf(“%s“,aa); fun(aa,bb); for(k=0;k double fun(double r)return 3.14159* 1 /2.0;main()double x; printf(“Enter x: “);scanf(“%lf“, 2 )

7、;printf(“ s = %lfn “, fun( 3 );第 1 处填空: r*r第 2 处 填 空 : an = x;while (x != ap)p = p+1; if (p = n)return -1;else/*found*/ for (i=p; i#include void fun(int m, int k, int xx)main()int m,n,zz1000; FILE *out;printf(“nPlease enter two integers:“); scanf(“%d,%d“,fun( m,n,zz);for(m=0; m=i)if(k=0)xxg+= I; k-;

8、else break;第 6 套填空题给定程序的功能是计算并输出下列级数的前 N 项之和 sN , 直到 sN 大于 Q 为 止 , Q 的值通过形参传入。例如,若 Q 的值为 50.0,则 函 数 值 为 50.416687。请勿改动主函数 main 和其他函数中的任何内容,仅在 fun 函数的横线上填入所编写的若干表达式或语句。 试 题 程 序 :#include double fun(double q)int n; double s; n = 2;s = 2.0;while (s 1 q)s = s + (double)(n+1)/n;2 ;printf(“n=%dn“,n);3 ;ma

9、in()printf(“%fn“, fun(50);第 1 处填空: #include double fun(int m)double y = 1.0; int i;/*found*/ for (i=2; i# include # define LEN 20void fun(char a, char b, int n)main()char str1LEN,str2LEN; int n;printf(“Enter the string:n“); gets(str1);printf(“Enter the position of the string deleted:“); scanf(“%d“,f

10、un(str1, str2, n);printf(“The new string is:%sn“,str2); fun(“Hello World!“, str2, 9);out = fopen(“out.dat“, “w“);fprintf(out, “%s“, str2); fclose(out);答案是:void fun(char a, char b, int n)int I,j=0; for(i=0;iint c1, c2, c3; void fun(long n)c1 = c2 = c3 = 0;while (n)switch( 1 )case 1:c1+;2 ; case 2:c2+

11、;3 ; case 3:c3+;n /= 10;main()long n = 123114350L;fun(n);printf(“nThe result :n“);printf(“n=%ld c1=%d c2=%d c3=%dn“, n, c1, c2, c3);第 1 处 填 空 : n%10第 2 处 填 空 : break第 3 处 填 空 : break改错题下列给定程序中函数 fun 的功能是: 用选择法对数组中的 n 个元素按从小到大的顺序进行排序。请改正程序中的错误,使程序能得出正确的结果。注 意 : 不 要 改 动 main 函 数 , 不 得 增 行 或 删 行 , 也 不 得 更 改 程序的结构!试 题 程 序 : #include #define N 20void fun(int a, int n)int i, j, t, p;for (j=0; jn-1; j+)

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 教育教学 > 计算机等级考试

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报