华为机试题2
【华为机试题2】【题目】
写出一个程序,接受一个有字母和数字以及空格组成的字符串,和一个字符,然后输出输入字符串中含有该字符的个数。不区分大小写。
【思路】
首选我把要输入的字符串和字符都转化成大写,然后去匹配,在这里你也可以都转化成小写去匹配
【代码实现】
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
推荐阅读
- 宽容谁
- 我要做大厨
- 增长黑客的海盗法则
- 画画吗()
- 2019-02-13——今天谈梦想()
- 远去的风筝
- 三十年后的广场舞大爷
- 叙述作文
- 20190302|20190302 复盘翻盘
- 学无止境,人生还很长