计算A+B的值
标签:int div 整数 std nbsp stdio.h turn scanf lld
计算A+B的值
多组输入, -100000000000<= A <= 100000000000, -100000000000<= B <= 100000000000, A, B都是整数
输出: 每一行输出 A+B
--正文
mdzz
#include <stdio.h> int main(){ long long a,b; while (scanf("%lld %lld",&a,&b) != EOF){ printf("%lld\n",a+b); } return 0; }
标签:int div 整数 std nbsp stdio.h turn scanf lld
原文地址:http://www.cnblogs.com/ToTOrz/p/6064094.html