ACM题目&答案

时间:2021-07-16 10:55:47
【文件属性】:
文件名称:ACM题目&答案
文件大小:1.23MB
文件格式:DOC
更新时间:2021-07-16 10:55:47
ACM Problem Description Calculate A + B. Input Each line will contain two integers A and B. Process to end of file. Output For each case, output A + B in one line. Sample Input 1 1 Sample Output 2 Author HDOJ 代码: #include int main() { int a,b; while(scanf("%d %d",&a,&b)!=EOF) printf("%d\n",a+b); }

网友评论