Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93545 | 胡海峰老师 | C语言8.6 | C | Accepted | 0 MS | 200 KB | 242 | 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 */