Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93955 | 汤弘毅 | A+B 输入输出练习III | C | Accepted | 0 MS | 200 KB | 205 | 2024-10-19 16:25:46 |
//CRTL+N(NEW),CRTL+S(SAVE) # include <stdio.h> /* */ int main(){ int a=1,b=1; scanf("%d%d",&a,&b); while(a!=0&&b!=0){ int c = a+b; printf("%d\n",c); scanf("%d%d",&a,&b); } }