Run ID:130963
提交时间:2025-09-20 14:49:53
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c,d; scanf("%lf",&a); scanf("%lf",&b); scanf("%lf",&c); d = (a+b+c)/3; printf("%.2lf\n",d); return 0; }