gpt4 book ai didi

java - 使用静态方法搜索字符串中的特定字符

转载 作者:行者123 更新时间:2023-12-01 08:08:00 25 4
gpt4 key购买 nike

我必须编写一个程序来计算字符串中字母 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);
}
}

最佳答案

private static boolean hasAnyB(String str) {
return str.contains("B") || str.contains("b");
}

关于java - 使用静态方法搜索字符串中的特定字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19855327/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com