华为OJ:计算字符个数

Posted mthoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了华为OJ:计算字符个数相关的知识,希望对你有一定的参考价值。

由于区分大写和小写,所以要用toUpperCase()和toLowerCase()两个函数同一时候与charAt得到的字符比較。

import java.util.Scanner;

public class countCharNumber {
	public static void main(String args[]){
		Scanner input=new Scanner(System.in);
		String s=input.nextLine();
		char c=input.next().charAt(0);
		int count=0;
		for(int i=0;i<s.length();i++){
			if(Character.toLowerCase(c)==s.charAt(i)||Character.toUpperCase(c)==s.charAt(i))count++;
		}
		System.out.println(count++);
	}
}

以上是关于华为OJ:计算字符个数的主要内容,如果未能解决你的问题,请参考以下文章

华为huawei oj

华为OJ078-计算字符串的距离

华为OJ:统计大写字母个数

华为OJ083-计算字符串的相似度

华为OJ071-公共子串计算

华为OJ063-字符串分割