Run ID:113884
提交时间:2025-03-16 19:52:45
#include <stdio.h> int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); float res; res = (a+b+c)/3.; printf("%.2f",res); return 0; }