华为机试题2

作者: Airycode | 来源:发表于2018-05-10 13:40 被阅读4次

    【题目】
    写出一个程序,接受一个有字母和数字以及空格组成的字符串,和一个字符,然后输出输入字符串中含有该字符的个数。不区分大小写。
    【思路】
    首选我把要输入的字符串和字符都转化成大写,然后去匹配,在这里你也可以都转化成小写去匹配
    【代码实现】

    public class Main {
    
        public static void main(String[] args) {
            Scanner input = new Scanner(System.in);
            String str = input.nextLine().toUpperCase();
            char target = input.nextLine().toUpperCase().toCharArray()[0];
            int result = getCount(str,target);
            System.out.println(result);
        }
    
        private static int getCount(String str, char target) {
            int count = 0;
            for (int i=0;i<str.length();i++) {
                if (str.charAt(i) == target) {
                    count++;
                }
            }
            return count;
        }
    }
    

    相关文章

      网友评论

        本文标题:华为机试题2

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