题解 | #计算某字符出现次数#

计算某字符出现次数

https://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner in = new Scanner(System.in);

        char[] a = in.nextLine().toLowerCase().toCharArray();

        char b = in.next().toLowerCase().charAt(0);

        int count = 0;

        for (char eum : a) {

            if (eum == b || eum == (b + 32))

                count++;

        }

        System.out.println(count);

    }

}

全部评论

相关推荐

程序员小白条:你不是有一段实习了吗,现在找中大厂实习?过段时间要秋招了
我的简历长这样
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务