问题 问答题

请编写方法int countChar(String s),该方法的功能是统计已知字符串s中字母的个数。例如:countChar("A1Bd56D")的返回值为4。

答案

参考答案:int countChar(String s)
{
byte b[]=s.getBytes();
int n=0;
for(int i=0;i<b.length;i++)
if(b[i]>=’a’&&b[i]<=’z’||b[i]>=’A’&&b[i]<=’Z’)
n++;
return n;
}

单项选择题
单项选择题