• 1065 A+B and C (64bit)


    Given three integers A, B and C in [−], you are supposed to tell whether A+B>C.

    Input Specification:

    The first line of the input gives the positive number of test cases, T (≤). Then T test cases follow, each consists of a single line containing three integers A, B and C, separated by single spaces.

    Output Specification:

    For each test case, output in one line Case #X: true if A+B>C, or Case #X: false otherwise, where X is the case number (starting from 1).

    Sample Input:

    3
    1 2 3
    2 3 4
    9223372036854775807 -9223372036854775808 0
    
     

    Sample Output:

    Case #1: false
    Case #2: true
    Case #3: false

    题意:

      给出三个数字,计算两个数字之和是否大于第三个数字。

    思路:

      因为相加的过程中可能产生溢出,所以要考虑到溢出的情况。所有可能的溢出情况是:正 + 正 = 负; 负 - 负 = 正(0)。如果是第一种溢出情况的话,两数之和一定大于第三个数;如果是第二种溢出的话,两数之和一定小于第三个数。

    Code:

     1 #include <bits/stdc++.h>
     2 
     3 using namespace std;
     4 
     5 int main() {
     6     int n;
     7     long long a, b, c, sum;
     8     cin >> n;
     9     for (int i = 1; i <= n; ++i) {
    10         cin >> a >> b >> c;
    11         sum = a + b;
    12         if (a > 0 && b > 0 && sum < 0)
    13             cout << "Case #" << i << ": true" << endl;
    14         else if (a < 0 && b < 0 && sum > 0)
    15             cout << "Case #" << i << ": false" << endl;
    16         else {
    17             if (sum > c)
    18                 cout << "Case #" << i << ": true" << endl;
    19             else
    20                 cout << "Case #" << i << ": false" << endl;
    21         }
    22     }
    23     return 0;
    24 }

    思考:

      为什么负数溢出可能为0,而整数不能为0呢?

    永远渴望,大智若愚(stay hungry, stay foolish)
  • 相关阅读:
    POJ-1088 滑雪 (包含部分自用测试数据)
    PHP-从零开始使用Solr搜索引擎服务(下)
    PHP-从零开始使用Solr搜索引擎服务(上)
    15位身份证号转化为18位身份证号
    php的数组转为对象
    H5页面遮罩弹框下层还能滚动的问题
    纯css实现长宽等比例的div
    VUE开发一个图片轮播的组件
    jQuery map和each用法
    表格式布局让每个列高度等于该行最大高度
  • 原文地址:https://www.cnblogs.com/h-hkai/p/12828634.html
Copyright © 2020-2023  润新知