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

计算某字符出现次数

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

import java.io.*;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br= new BufferedReader(new InputStreamReader(System.in ));
	  	//输入对象流
        String str1=br.readLine();
        String str2=br.readLine();
	  	//一、二行字符转化为字符串
        String p=str1.toUpperCase();
        String c=str2.toUpperCase();
	  	//把所有的字符串转化为大写
        char ps[]=p.toCharArray();
        char cs=c.charAt(0);
		//把字符串转换成数组 
        int times=0;
        for(int i=0;i<ps.length;i++){
            if(cs==ps[i]){
                times++;
            }
        }
	  	//把cs数组遍历ps中,把相同的字符用times记录下来
        System.out.println(times);
        }
    }

全部评论

相关推荐

2024-11-21 13:04
已编辑
门头沟学院 算法工程师
点赞 评论 收藏
分享
2024-11-08 16:53
门头沟学院 C++
投票
滑模小马达:第三个如果是qfqc感觉还行,我签的qfkj搞电机的,违约金也很高,但公司感觉还可以,听说之前开过一个试用转正的应届生,仅供参考。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务