HDU 1089 A+B for Input-Output Practice (I)

来源:互联网 发布:php 反射获取类变量 编辑:程序博客网 时间:2024/05/22 01:27

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1089

#include <iostream>#include<cstdio>using namespace std;int main(){    int a,b;    while(scanf("%d %d",&a,&b)!=EOF)    {        printf("%d\n",a+b);    }    return 0;}




0 0
原创粉丝点击