Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97835 吴梓玄 02计算(a+b)/c C Accepted 0 MS 204 KB 131 2024-11-16 16:42:15

Tests(10/10):


Code:

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