PAT(Basic Level) 1011 A+B 和 C

PAT(Basic Level) 1011 A+B 和 C

 

 

注:1、int型为有符号32位整数,占4个字节,取值范围在-2,147,483,648~2,147,483,647之间。

注意:int占多少个字节是由编译器决定的,ANSI标准定义int是占2个字节.

 

  2、C++中,int占用4字节,32比特,数据范围为-2147483648~2147483647[-2^31~2^31-1]。

int占用2字节,16比特,数据范围为-32768~32767[-2^15~2^15-1]。

 

  3、long long长度[-2^63,2^63)

 

 1 #include<iostream>
 2 
 3 using namespace std;
 4 
 5 int main(){
 6     int X;
 7     cin>>X;
 8     
 9     for(int i=0;i<X;i++)
10     {
11         long long a,b,c;
12         cin>>a>>b>>c;
13         if((a+b)>c) cout<<"Case #"<<i+1<<": true"<<endl;
14         else cout<<"Case #"<<i+1<<": false"<<endl;
15     }
16     return 0;
17 }

 

上一篇:Cannot load C:\Users\12778\AppData\Local\JetBrains\IntelliJIdea2021.1\tomcat\c0cf5d96-4221-4


下一篇:[LeetCode] 147. Insertion Sort List