1011. A+B和C

题目截图:

 

思路:

  简单模拟。

 

代码:

 1 /*
 2     1011. A+B和C
 3 */
 4 
 5 #include <stdio.h>
 6 #include <string.h>
 7 #include <math.h>
 8 #include <stdlib.h>
 9 #include <time.h>
10 
11 int main() {
12     int n, i;
13     long long a, b, c;
14     scanf("%d", &n);
15     for(i=0; i<n; ++i) {
16         scanf("%lld %lld %lld", &a, &b, &c);
17         printf("Case #%d: ", i+1);
18         if(a+b > c) {
19             printf("true\n");
20         } else {
21             printf("false\n");
22         }
23     } 
24 
25     return 0;
26 }

 

posted @ 2018-02-26 11:11  Just_for_Myself  阅读(220)  评论(0编辑  收藏  举报