A+B Problem

Posted joannasblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A+B Problem相关的知识,希望对你有一定的参考价值。

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.
 

Code

#include<stdio.h>
int main()
{
    int a,b,sum;
    while(scanf("%d %d",&a,&b)!=EOF)
    {
        sum=a+b;
        printf("%d ",sum);
    }
    return 0;
}

Attention

键盘输入CTRL+Z就是输入文件结束符。











以上是关于A+B Problem的主要内容,如果未能解决你的问题,请参考以下文章

为啥是“a^=b^=a^=b;”不同于“a^=b;b^=a;a^=b;”?

python的 a,b=b,a+b 和 a=b b=a+b 的区别

理解 Python 交换:为啥 a, b = b, a 并不总是等价于 b, a = a, b?

为啥“a+++++b”不能在gcc中编译,而“a+++b”、“a++ + ++b”、“a+++ ++b”可以? [复制]

1.python的 a,b=b,a+b 和 a=b b=a+b 的区别

分治法求sum(a,b)=1+a+a^2+...+a^b=?