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

计算某字符出现次数

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

import java.util.Scanner;

public class Main {


    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        String s1 = sc.nextLine();
        System.out.println(count(s, s1.charAt(0)));
    }


    /**
     * 计算字符出现次数
     */
    public static int count(String str,char c){
        int count = 0;
        c = Character.toUpperCase(c);
        for(int i = 0; i<str.length(); i++){
            char c1 = Character.toUpperCase(str.charAt(i));
            if(c-c1==0){
                count++;
            }
        }
        return count;
    }
}
全部评论

相关推荐

微风不断:兄弟,你把四旋翼都做出来了那个挺难的吧
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务