zzuli OJ 1009: 求平均分

Description

已知某位学生的数学、英语和计算机课程的成绩,求该生三门课程的平均分。

Input

输入三个整数,数据之间由空格隔开。

Output

输出占一行,包含一个实数,为三门课的平均分,保留两位小数。

Sample Input

87 73 93

Sample Output

84.33

HINT



#include<stdio.h>

int main(void)
{
	double a, b, c; 			//定义a,b,c为double类型变量
	
	scanf("%lf%lf%lf", &a, &b, &c); 
	printf("%.2f\n", (a + b + c) / 3.0 ); //输出平均分
	return 0;
}


你可能感兴趣的:(c,算法,ACM)