Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96862 | 吴梓玄 | A+B 输入输出练习II | C++ | Accepted | 0 MS | 200 KB | 176 | 2024-11-09 17:14:14 |
#include <stdio.h> int main() { int a,b,c,x; scanf("%d",&x); for (int i=0;i<x;++i){ scanf("%d%d",&a,&b); c=a+b; printf("%d\n",c); } return 0; }