2014年计算机二级《C语言程序设计》上机操作题16套及答案分享给大家,非常好的资料,看完这些上机的题目差不多都在里面,必过!!
需要的朋友记得回帖下载!
链接: http://pan.baidu.com/s/1pJNU8Pl
内容预览:
程序改错题 下列给定程序中,函数proc()的功能是根据整型形参n,计算如下公式的值: y=1-1/(22)+1/(33)-1/(44)+…+(-1)(n+1)/(nn) 例如,n中的值为10,则应输出0.817962。 请修改程序中的错误,使它能得到正确结果。 注意:不要改动main()函数,不得增行或删行,也不得更改程序的结构。 试题程序: #include<sldlib.h> #include<conio.h> #include<stdio.h> doubleproc(int n) { doubley=1.0; //****found**** int j=1; int i; for(i=2;i<=n.;i++) { j=-1*j;//****found**** y+=1/(i*i); } return(y); } voidmain() { int n=10: system(”(CLS”): printf(”\nThe result is%lf\n”,proc(n)); ) 三、程序设计题 编写一个函数,从传人的M个字符中找出最长的一个字符串,并通过形参指针max传回该串地址(用****作为结束输入的标志)。 注意:部分源程序给出如下。 请勿改动main()函数和其他函数中的任何内容,仅在函数proc()的花括号中填入所编写的若干语句。 试题程序: #include<stdio.hi> #include<string.h> #include<conio.h> char*proc(cb,ar(*a)[81],int num) { } voidmain() { charss[10][81],*max; int n,i=0; printf(”输入若干个字符串:”); gets(ss); puts(ss); while(!strcmp(ssEi],"****")==0) { i++: gets(ss); puts(ss); ) n一1; max=proc(ss,n): printf(”\nmax=%s\n”,max); )
|