【1065】A+B and C (64bit) (20 分)

举报
野猪佩奇996 发表于 2022/01/23 23:23:55 2022/01/23
【摘要】 #include<iostream>#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>#include<algorithm> #include<map>#inclu...

  
  1. #include<iostream>
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4. #include<math.h>
  5. #include<string.h>
  6. #include<algorithm>
  7. #include<map>
  8. #include<vector>
  9. #include<queue>
  10. using namespace std;
  11. //long long范围是[-2^63,2^63)--->>考虑溢出情况
  12. int main(){
  13. int T,tcase=1;
  14. scanf("%d",&T);
  15. while(T--){
  16. long long a,b,c;
  17. scanf("%lld%lld%lld",&a,&b,&c);
  18. long long res=a+b; //res存放a+b的结果
  19. bool flag;
  20. if(a>0 && b>0 && res<0) flag=true; //正溢出为true
  21. else if(a<0 && b<0 && res >=0) flag=false; //负溢出为false
  22. else if(res>c) flag=true; //无溢出时,A+B>C时为true
  23. else flag=false; //无溢出时,A+B>C时为false
  24. if(flag == true){
  25. printf("Case #%d: true\n",tcase++);
  26. }else {
  27. printf("Case #%d: false\n",tcase++);
  28. }
  29. }
  30. system("pause");
  31. return 0;
  32. }

 

文章来源: andyguo.blog.csdn.net,作者:山顶夕景,版权归原作者所有,如需转载,请联系作者。

原文链接:andyguo.blog.csdn.net/article/details/100047589

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。