PAT 乙级 1011

时间:2024-12-07 10:03:26

题目

题目地址:PAT 乙级 1011

思路

这道题的比较坑的地方在于给定数据的范围

int 类型的数据大小是[-2^31 , 2^31 -1] 即 [-2147483648,2147483647]

本题给定数据的大小是[-2^31 , 2^31]正好比int类型的正数多了1,因此需要改变数据类型,扩大数能表示的范围

代码

 #include <iostream>
using namespace std; int main() {
int t = ;
long long a = , b = , c = ;
cin >> t;
int cnt = ;
while (t--) {
cin >> a >> b >> c;
if (a + b > c)
cout << "Case #" << cnt << ": true" << endl;
else
cout << "Case #" << cnt << ": false" << endl;
cnt++;
} return ;
}