题解 | #统计字符串中字母出现次数#

import java.util.Scanner;

public class Main { public static void main(String[] args) { String string = "H e l l o ! n o w c o d e r"; Scanner scanner= new Scanner(System.in); String word = scanner.next(); scanner.close(); System.out.println(check(string, word)); }

public static int check(String str, String word) {

    //write your code here......
    int l = str.length();
    int  num = 0;
    for(int i = 0; i < l; i++){
        char ch = str.charAt(i);
        char w = word.charAt(0);
        if(w == ch) num++;
    }
    return num;

}

}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 17:16
科大讯飞 算法工程师 28.0k*14.0, 百分之三十是绩效,惯例只发0.9
点赞 评论 收藏
分享
面试摇了我吧:啊哈哈面试提前五个小时发,点击不能参加就是放弃
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务