[PAT乙級題解]——A+B和C
阿新 • • 發佈:2018-03-14
a+b pan 判斷 std ros 是否 如果 oid 用例
給定區間[-231, 231]內的3個整數A、B和C,請判斷A+B是否大於C。
輸入格式:
輸入第1行給出正整數T(<=10),是測試用例的個數。隨後給出T組測試用例,每組占一行,順序給出A、B和C。整數間以空格分隔。
輸出格式:
對每組測試用例,在一行中輸出“Case #X: true”如果A+B>C,否則輸出“Case #X: false”,其中X是測試用例的編號(從1開始)。
輸入樣例:
4 1 2 3 2 3 4 2147483647 0 2147483646 0 -2147483648 -2147483647
輸出樣例:
Case #1: false
Case #2: true
Case #3: true
Case #4: false
c++版:
#include<iostream>
using namespace std;
void no1(){
int n;
cin>>n;
long A[n];
long B[n];
long C[n];
for(int i = 0 ; i < n ; i++)
cin>>A[i]>>B[i]>>C[i];
for(int j = 0;j<n;j++){
if(A[j]+B[j]>C[j])
cout<<"Case #"<<j+1<<": true"<<endl;
else
cout<<"Case #"<<j+1<<": false"<<endl;
}
}
Java版:
import java.util.Scanner; public class Main {public void no1(){ Scanner sc = new Scanner(System.in); int n; n = sc.nextInt(); long A,B,C; A = 0;B = 0;C = 0; for(int i = 0 ; i < n ; i++){ A = sc.nextLong(); B = sc.nextLong(); C = sc.nextLong(); int j = i+1; if(A+B > C) System.out.println("Case #"+j+": true"); else System.out.println("Case #"+j+": false"); } } public static void main(String[] args) { Main main = new Main(); main.no1(); } }
[PAT乙級題解]——A+B和C