Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113886 施宸雨 04计算平均分 C Accepted 1 MS 200 KB 155 2025-03-16 19:54:03

Tests(10/10):


Code:

#include <stdio.h> int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); float n; n = (a + b + c) / 3.00; printf("%.2f",n); return 0; }