1

作者: surrealtire | 来源:发表于2020-02-22 14:20 被阅读0次

    题目描述

    给定区间[-2的31次方, 2的31次方]内的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

    正确java代码如下:

    import java.util.*;

    public class Main {

        public static void main(String[] args){

            Scanner scan = new Scanner(System.in);

            ArrayList<String> list = new ArrayList<String>();

            long a,b,c;

            int i=1;

            int count = scan.nextInt();

            while(count >0){

                a = scan.nextLong();

                b = scan.nextLong();

                c = scan.nextLong();

                if(a+b>c)list.add("true");

                else list.add("false");

                count --;

            }

            /*

            *case

            */

            for(String str:list){

                System.out.println("Case #"+i+": "+str);

                i++;

            }

        }

    }

    期间存在的问题:在 System.out.println("Case #"+i+": "+str);该语句中在冒号后应该加空格。

    相关文章

      网友评论

          本文标题:1

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