实验2-1-4 计算平均分(5 分)

实验2-1-4 计算平均分(5 分)

已知某位学生的数学、英语和计算机课程的成绩分别是87分、72分和93分,求该生3门课程的平均成绩(结果按整型输出)。

输入格式:

本题无输入

1
2


输出格式:

按照下列格式输出结果:

1
math = 87, eng = 72, comp = 93, average = 计算所得的平均成绩
1
2
3
4
5
6
7
8
9
#include<stdio.h> 
int main(void)
{
int math,eng,comp,average;
math=87; eng=72; comp=93;
average=(math+eng+comp)/3;
printf("math = 87, eng = 72, comp = 93, average = %d\n",average);
return 0;
}
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×