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

计算某字符出现次数

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

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
       
        String sr=in.nextLine();
        char ch=in.nextLine().toUpperCase().charAt((0));
        if(sr.length()<1||sr.length()>1000){}
        char arr[]=new char[sr.length()];
        arr=sr.toUpperCase().toCharArray();
        int j=0;
        for(int i=0;i<sr.length();i++){
            if((arr[i]==ch))
            {
                
                j++;
            }
        }
        System.out.println(j);
        
    }
}
全部评论

相关推荐

冲芭芭拉鸭:你这图还挺新,偷了。
投递美团等公司10个岗位
点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务