Run ID:93545
提交时间:2024-10-17 20:19:12
#include <stdio.h> main() { float res=0,tmp; for(int i=1;i<=10;i++) { scanf("%f",&tmp); res += tmp; } printf("%.2f", res/(float)10); return 0; } /* 100 56 78 98.5 76 87 99 67.5 75 97 Output 83.40 */