Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112648 | 胡海峰老师 | A+B 输入输出练习II | C | Accepted | 1 MS | 196 KB | 276 | 2025-03-09 20:31:02 |
#include <stdio.h> //IPO模型:input _ process _ output int main(){ int n; scanf("%d",&n); //测试n组数据 for(int i=1;i<=n;i++) { int a,b; scanf("%d%d",&a,&b); printf("%d\n",a+b); } } /* Input 2 1 5 10 20 Output 6 30 */