码迷,mamicode.com
首页 > 其他好文 > 详细

A + B Problem

时间:2020-03-25 16:09:38      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:std   problem   sam   void   and   cal   print   tput   pre   

Calculate A + B

InputEach line will contain two integers A and B. Process to end of file. 
OutputFor each case, output A + B in one line. 
Sample Input

1 1

Sample Output

2
 1 #include <stdio.h>
 2 
 3 void solve(){
 4     int a,b;
 5     while(scanf("%d%d",&a,&b)!=EOF){
 6         printf("%d\n",a+b);     
 7     }
 8 }
 9 int main(){
10     solve();
11     return 0;
12 }

 

A + B Problem

标签:std   problem   sam   void   and   cal   print   tput   pre   

原文地址:https://www.cnblogs.com/yzlzm/p/12566759.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!