hdu 1000 A + B Problem 的解题报告

链接:http://acm.hdu.edu.cn/showproblem.php?pid=1000

超级水的题:

View Code
1 #include<stdio.h>
2 #define P 3.1415927
3 main()
4 {
5 int a,b;
6 while(scanf("%d%d",&a,&b)==2)
7 printf("%d\n",a+b);
8 return 0;
9 }
原文地址:https://www.cnblogs.com/jian1573/p/2002508.html