gpt4 book ai didi

Java返回值取决于字符串中猫和狗的出现?

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

  1. 用户输入一个字符串。

  2. 如果猫和狗出现的时间相同,则程序返回 true,否则返回 false。

  3. 示例:catcatdoghotdog = 返回 TRUE,因为 cat = 2dog = 2

//我的代码

 public String three (String str) 
{
int cat = 0;
int dog = 0;

for(int a = 0; a < str.length() - 2; a++)
{
if (str.substring(a, a+3).equals("cat"))
{
cat++;
}

if (str.substring(a, a+3).equals("dog"))
{
dog++;
}
}

if(dog == cat)
{
return "TRUE";
}

else
{
return "FALSE";
}
}

System.out.println("Number of times cat and dogs appear in your word: " , + response.three(word)); // doesn't work...

ERROR: + operator is undefined for String argument.

任何建议,非常欢迎

最佳答案

要连接字符串和变量,使用+就足够了。删除,

System.out.println("Number of times cat and dogs appear in your word: " + response.three(word));

关于Java返回值取决于字符串中猫和狗的出现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47916775/

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