假定一个学生有三门主课成绩:数学,语文,英语,编写平均值函数求学生的...
发布网友
发布时间:2024-10-24 19:03
我来回答
共1个回答
热心网友
时间:2024-10-24 19:10
#include"stdio.h"
float average(int a,int b,int c){
return((a+b+c)/3.0);
}
void main(){
int a,b,c;
printf("Please input the scores:");
scanf("%d%d%d",&a,&b,&c);
printf("The average is %f.\n",average(a,b,c));
}