import java.util.Scanner;
public class p2 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input=new Scanner (System.in);
//while(input.hasNextLine()){
int count=0;
String s=input.nextLine();
String ch=input.nextLine();
s=s.toLowerCase();
ch=ch.toLowerCase();
char a=ch.charAt(0);
for(int i=0;i<s.length();i++){
if(s.charAt(i)==a)
count++;
}
System.out.println(count);
}
}
注意:调用函数后一定把结果赋值。
统计字符的个数
最新推荐文章于 2023-10-10 12:59:45 发布