文字列内の文字 B の数を数えるプログラムを作成する必要があります。私はすでにその部分を取得していますが、文字列に B が含まれているかどうかに基づいて true または false を返す静的メソッドを使用する必要があり、その部分にどのように収まるかが本当にわかりません.
import java.util.Scanner;
public class CountB {
// write the static method “isThisB” here
public static void main(String[] args) {
Scanner keyboard = new Scanner(System.in);
System.out.println("Enter a string: ");
String w = keyboard.nextLine();
int count=0;
for (int i=0; i<w.length(); i++)
{
if (w.charAt(i)=='B'||w.charAt(i)=='b')
{
count++;
}
}
System.out.println("Number of B and b: "+ count);
}
}