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

PAT (Advanced Level) 1065. A+B and C (64bit) (20)

时间:2016-06-25 20:22:58      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

因为会溢出,因此判断条件需要转化。变成b>c-a

#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<queue>
#include<algorithm>
using namespace std;

long long a,b,c;

int main()
{
  int T; scanf("%d",&T);
  int Case=1;
  while(T--)
  {
    scanf("%lld%lld%lld",&a,&b,&c);
    printf("Case #%d: ",Case++);
    if(b>c-a) printf("true\n");
    else printf("false\n");
  }
  return 0;
}

 

PAT (Advanced Level) 1065. A+B and C (64bit) (20)

标签:

原文地址:http://www.cnblogs.com/zufezzt/p/5616764.html

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