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

a+b_1

时间:2018-02-10 17:05:33      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:body   bool   截图   16px   直接   bsp   思路   print   div   

题目截图:

技术分享图片

 

思路:

  直接输出即可。

 

代码如下:

 1 /*
 2     a+b
 3 */
 4 
 5 #include <stdio.h>
 6 #include <string.h>
 7 #include <math.h>
 8 #include <stdlib.h>
 9 #include <time.h>
10 #include <stdbool.h>
11 
12 int main() {
13     int a, b;
14     while(scanf("%d %d", &a, &b) != EOF) {
15         // int 理论上会溢出 
16         long long c = a+b;
17         printf("%lld\n", c);
18     }
19 
20     return 0;
21 }

 

a+b_1

标签:body   bool   截图   16px   直接   bsp   思路   print   div   

原文地址:https://www.cnblogs.com/coderJiebao/p/HustTest23.html

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