我正在尝试从 Java 中的 codingbat.com 完成这个练习。我在这段代码中收到此错误“令牌“返回”上的语法错误,无效类型”,我无法弄清楚原因。我试图返回单词“hi”出现在给定字符串中的次数。谢谢!
public int countHi(String str) {
int count = 0;
for(int i = 0; i < str.length() - 1; i++){
if(str.substring(i, i + 2).equals("hi"));
count++;
}
}
return count;
}