【美团笔试】

太搞笑了,两个都是钻空子,要是能钻空子拿offer就好了

一、大数相加,用BigInteger就是要注意解决输入为空串的情况,不然只有91%
public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String s1 = sc.nextLine();
        String s2 = sc.nextLine();
        if(s1 == null || s1.length() == 0)
            System.out.println(s2);
        else if(s2 == null || s2.length() == 0)
            System.out.println(s1);
        else {
            BigInteger a = new BigInteger(sc.nextLine());
            BigInteger b = new BigInteger(sc.nextLine());
            System.out.println(a.add(b));
        }
    }
二、发激励,题目太长了,要多线程我都看懵了,想试试直接输出,结果过了。。。
public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        for(int i = 1;i<=n;i++){
            if(i %2 ==1)
                System.out.print("A");
            else if(i %4 == 2)
                System.out.print("B");
            else 
                System.out.print("C");
        }
    }




#美团##题解#
全部评论
现在考完了吗,就发答案?😂
点赞 回复 分享
发布于 2019-09-11 17:09
这。。。?
点赞 回复 分享
发布于 2019-09-11 17:11
这可是真的牛逼~
点赞 回复 分享
发布于 2019-09-11 17:15
你是啥岗位呀
点赞 回复 分享
发布于 2019-09-11 17:16
牛逼
点赞 回复 分享
发布于 2019-09-11 17:19
我的第二题跟你一样,但我的第一题是将数字转中文
点赞 回复 分享
发布于 2019-09-11 17:22

相关推荐

joe2333:怀念以前大家拿华为当保底的日子
点赞 评论 收藏
分享
11-05 07:29
贵州大学 Java
点赞 评论 收藏
分享
评论
1
2
分享
牛客网
牛客企业服务