第 1 頁:程序填空題 |
第 2 頁:程序改錯題 |
第 3 頁:程序設(shè)計題 |
第 4 頁:參考答案 |
點擊查看:【C】2014年計算機二級考試C語言考前預(yù)測上機試題
一、程序填空題
給定程序的功能是計算score中m個人的平均成績aver,將低于aver的成績放在below中,通過函數(shù)名返回人數(shù)。
例如,當(dāng)score=(10,20,30,40,50,60,70,80,90},m= 9時,函數(shù)返回的人數(shù)應(yīng)該是4,below={10,20,30,40}。
注意:部分源程序給出如下。
請勿改動main()函數(shù)和其他函數(shù)中的任何內(nèi)容,僅在橫線上填入所編寫的若干表達式或語句。
試題程序:
#include
#include%string.h>
int fun(int score[],int m,int below[])
{
int i,j=0;
float aver=0.0;
for(i=0;i aver+=score[i]:
aver/=(float)m:
for(i=0;i if(score[i] below[j++]= 【1】 ;
return j;
}
void main()
{
int i,n,below[9];
int score[9]={10,20,30,40,50,60,70,80,90);
n=fun(score,9, 【2】);
printf("\n Below the average score are:%d\n",n);
for(i=0;i printf("%d", 【3】 );
}
相關(guān)推薦:
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |