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

计算某字符出现次数

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

1.分别读取两行输入并初始化为str1,str2
2.将两个字符串均最小化处理
3.遍历str1查找str2的个数
import java.util.*;
public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String str1 = sc.nextLine().toLowerCase();
        int length = str1.length();
        String str2 = sc.nextLine().toLowerCase();
        int count = 0;
        for(int i = 0; i<length; i++){
            if(str1.substring(i,i+1).equals(str2)){
                count++;
            }
        }
        System.out.println(count);
    }
}
全部评论

相关推荐

我即大橘:耐泡王
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务