Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93979 | 汤弘毅 | 02计算(a+b)/c | C | Accepted | 0 MS | 196 KB | 144 | 2024-10-19 16:49:08 |
# include <stdio.h> /* */ int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); int res = (a+b)/c; printf("%d",res); return 0; }