首页 > 阿里5.28的笔试有人做了吗?第一题我这样写怎么不对啊?
头像
牛客943266728号
编辑于 2021-05-29 22:56
+ 关注

阿里5.28的笔试有人做了吗?第一题我这样写怎么不对啊?

public static void main(String[] args) {
    Scanner in = new Scanner(System.in);
    String num = in.nextLine();  int n = Integer.parseInt(num);  if(n<1 || n>100000){  return;
    }
    String s = in.nextLine();
    String t = in.nextLine();  if(s.length() != n || t.length() != n){ return ;
    }  int res = getResult(n, s, t);
    System.out.println(res);
} private static int getResult(int n, String s, String t) {  int res = 0;  char[] chars = s.toCharArray();  char[] chart = t.toCharArray();  for(int i=0; i<n; i++){  if(chars[i] != chart[i]){
            res++;
        }
    }  return res;
}

全部评论

(4) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐