HDU 1000 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.
 

 

Sample Input
1 1
 

 

Sample Output
2
 
 
題意:求輸入的兩個數之和。
分析:注意題目暗含循環輸入輸出。
AC源代碼(C語言):
1 #include<stdio.h>
2 int main()
3 {
4  int a,b;
5  while(scanf("%d%d",&a,&b)!=EOF)
6  printf("%d\n",a+b);
7  return 0;
8 }

 2013-01-13

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM