美文网首页
PAT-B-1011. A+B和C(Java)

PAT-B-1011. A+B和C(Java)

作者: GeekMonKey | 来源:发表于2016-12-01 21:30 被阅读61次

    1011. A+B和C (15)

    package com.hym.PAT_B;
    
    import java.util.Scanner;
    
    /**
     * Created by ymhou on 2016/11/21.
     * 通过全部测试点,答案正确
     */
    public class PAT_B_1011 {
        public static void main(String[] args) {
            Scanner scanner = new Scanner(System.in);
            int T = scanner.nextInt();
            long num[][] = new long[T][3];
    
            for(int i=0; i<T; i++){
                for(int j=0; j<3; j++){
                    num[i][j] = scanner.nextInt();
                }
            }
    
            for(int i=0; i<T; i++){
                int n = i+1;
                if(num[i][0]+num[i][1] > num[i][2]){
                    System.out.println("Case #"+n+": true");
                }
                else {
                    System.out.println("Case #"+n+": false");
                }
            }
        }
    }
    
    

    相关文章

      网友评论

          本文标题:PAT-B-1011. A+B和C(Java)

          本文链接:https://www.haomeiwen.com/subject/fzkfmttx.html