题意:输入三个数,计算并输出它们的平均值以及三个数的乘积,结果保留2位小数。
题解:简单题不写题解了……
代码:
#include <cstdio>
double a, b, c;
int main()
{
while (~scanf("%lf%lf%lf", &a, &b, &c))
{
printf("%.2lf %.2lf
", (a+b+c)/3, a*b*c);
}
return 0;
}
题意:输入三个数,计算并输出它们的平均值以及三个数的乘积,结果保留2位小数。
题解:简单题不写题解了……
代码:
#include <cstdio>
double a, b, c;
int main()
{
while (~scanf("%lf%lf%lf", &a, &b, &c))
{
printf("%.2lf %.2lf
", (a+b+c)/3, a*b*c);
}
return 0;
}