华为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:计算字符个数的主要内容,如果未能解决你的问题,请参考以下文章