Java解 | #HJ2计算某字母出现次数#
Posted 闭关苦炼内功
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java解 | #HJ2计算某字母出现次数#相关的知识,希望对你有一定的参考价值。
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner in = new Scanner(System.in);
while(in.hasNext()){
String str = in.nextLine().toLowerCase();
Character c = in.nextLine().toLowerCase().charAt(0);
Character.toLowerCase(c);
int count = 0;
for(int i=0;i<str.length();i++){
if(c == str.charAt(i)){
count++;
}
}
System.out.println(count);
}
}
}
以上是关于Java解 | #HJ2计算某字母出现次数#的主要内容,如果未能解决你的问题,请参考以下文章