【题目】
写出一个程序,接受一个有字母和数字以及空格组成的字符串,和一个字符,然后输出输入字符串中含有该字符的个数。不区分大小写。
【思路】
首选我把要输入的字符串和字符都转化成大写,然后去匹配,在这里你也可以都转化成小写去匹配
【代码实现】
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String str = input.nextLine().toUpperCase();
char target = input.nextLine().toUpperCase().toCharArray()[0];
int result = getCount(str,target);
System.out.println(result);
}
private static int getCount(String str, char target) {
int count = 0;
for (int i=0;i<str.length();i++) {
if (str.charAt(i) == target) {
count++;
}
}
return count;
}
}
网友评论