Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93948 | 张亦瑞 | A+B 输入输出练习III | C++ | Accepted | 0 MS | 208 KB | 197 | 2024-10-19 16:22:30 |
#include <stdio.h> int main() { int a,b,c; scanf("%d%d",&a,&b); while( !(a==0 && b==0 )) // and--&& or---|| not----! { c=a+b; printf("%d\n",c); scanf("%d%d",&a,&b); } }