当前位置:   article > 正文

C语言:m个人的成绩存放在score数组中,请编写函数fun,它的功能是:将低于平均分的人数作为函数值返回,将低于平均分的分数放在below所指的数组中。_将低于平均分的人数作为函数值返回。

将低于平均分的人数作为函数值返回。

#include <conio.h>
#include <stdio.h>
#include <string.h>

/*
	1.m个人的成绩存放在score数组中,请编写函数fun,它的功能是:将低于平均分的人数作为函数值返回,将低于平均分的分数放在below所指的数组中。
	例如,当score数组中的数据为10、20、30、40、50、60、70、80、90时,函数返回的人数应该是4,below中的数据应为10、20、30、40。
	注意:部分源程序给出如下。
	请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。
	#include <conio.h>
	#include <stdio.h>
	#include <string.h>
	
	int fun(int score[],int m, int below[])
	{
		
	}
	main()
	{
	    int i,n,below[9];
	    int score[9]={10,20,30,40,50,60,70,80,90};
	    clrscr();
	    n=fun(score,9,below);
	    printf("\nBelow the average score are :");
	    for(i=0;i<n;i++) 
	        printf("%d ",below[i]);
	}
*/

int fun(int score[],int m, int below[])
{
	
	float sum=0,ave=0;		
	int i, n=0;//n: 低于平均分的人数,返回值 
	
	for(i=0;i<9;i++){
		sum+=score[i];
	} 
	
	ave=sum/m;
	
	for(i=0;i<9;i++){
		if(score[i]<ave){
			n++;
			below[i]=score[i];
		}
	}

	printf("低于平均分的人数=%d",n);
	
	return(n);
}

main()
	{
	    int i,n,below[9];
	    int score[9]={10,20,30,40,50,60,70,80,90};
	    //clrscr();
		system("cls");
	    n=fun(score,9,below);
	    printf("\nBelow the average score are :");
	    for(i=0;i<n;i++) 
	        printf("%d ",below[i]);
	}	
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/522359
推荐阅读
相关标签
  

闽ICP备14008679号