资源描述:
《全国计算机二级c机试题库》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、全国计算机二级C机试题库19GM9L-G8AB4G-CT8VE2UUP7UN1.编写函数fun,函数的功能是:根据以下公式计算s,计算结果作为函数值返回;n通过形参传入。S=1+1/(1+2)+1/(1+2+3)+…+1/(1+2+3+…+n)例如,若n的值为11时,函数的值为1.833333。注意:部分源程序给出如下。请勿改动main函数和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。试题程序:#include#include#include<
2、string.h>#includefloatfun(intn){}voidmain(){FILE*wf;intn;floats;system("CLS");printf("PleaseenterN:");scanf("%d",&n);s=fun(n);printf("Theresultis:%f",s);/******************************/wf=fopen("out.dat","w");fprintf(wf,"%f",fun(11));fclose
3、(wf);/*****************************/}【参考答案】floatfun(intn){inti,s1=0;floats=0.0;for(i=1;i<=n;i++){s1=s1+i;s=s+1.0/s1;}returns;}2.请编写一个函数voidfun(char*tt,intpp[]),统计在tt字符串中"a"到"z"26个字母各自出现的次数,并依次放在pp所指数组中。例如,当输入字符串abcdefghabcdeabc后,程序的输出结果应该是:33322111000000
4、0000000000000注意:部分源程序给出如下。请勿改动main函数和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。试题程序:#include#include#includevoidfun(char*tt,intpp[]){}voidmain(){FILE*wf;charaa[1000];intbb[26],k;system("CLS");printf("Pleaseenteracharstring:");scanf(
5、"%s",aa);fun(aa,bb);for(k=0;k<26;k++)printf("%d",bb[k]);printf("");/******************************/wf=fopen("out.dat","w");fun("abcdefgabcdeabc",bb);for(k=0;k<26;k++)fprintf(wf,"%d",bb[k]);fclose(wf);/*****************************/}【参考答案】voidfun(char*t
6、t,intpp[]){inti;for(i=0;i<26;i++)pp[i]=0;for(;*tt!=' ';tt++)if(*tt>='a'&&*tt<='z')pp[*tt-'a']++;}3.请编写函数fun,它的功能是:求出ss所指字符串中指定字符的个数,并返回此值。例如,若输入字符串123412132,输入字符1,则输出3。注意:部分源程序给出如下。请勿改动main函数和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。试题程序:#include#incl
7、ude#include#defineM81intfun(char*ss,charc){}voidmain(){FILE*wf;chara[M],ch;system("CLS");printf("Pleaseenterastring:");gets(a);printf("Pleaseenterachar:");ch=getchar();printf("Thenumberofthecharis:%d",fun(a,ch));/**************
8、****************/wf=fopen("out.dat","w");fprintf(wf,"%d",fun("123412132",'1'));fclose(wf);/*****************************/}【参考答案】intfun(char*ss,charc){inti=0;for(;*ss!=' ';ss++)if(*ss==c)i++;returni;}4.请编写一个函数fun,它的功能是:求出1