摘要: #include<stdio.h> int main(){ int a,b; while(scanf("%d %d",&a,&b) != EOF){ if(a == '\n' || b == '\n') return 0; printf("%d\n",a+b); } return 0; } 关键:这 阅读全文
posted @ 2024-02-04 22:42 Yoloerr 阅读(15) 评论(0) 推荐(0)