public class meaingCompare {
public static void main(String[] args) {
int cnt = 0;
String st1, u, st2;
st2 = "funny";
int n = 5;
System.out.println("Enter the string");
Scanner in=new Scanner(System.in);
st1 = in.nextLine();
String[] v = st1.split("\\s+");
for(int i = 0; i < st1.length(); i++) {
if(v[i].equalsIgnoreCase(st2))
cnt++;
}
if(cnt>=4)
System.out.println(" match found");
}
}
我只是一個初學者在java.I中想要得到輸出作爲匹配發現如果輸入字符串中的單詞no:匹配單詞funny大於4但if循環不是加工。如果循環不工作?任何人都可以幫我
定義不工作,'if'不是循環, –
請提供一些示例不正確的輸出和預期的輸出。 – Arc676
它不能。有一個語法錯誤:缺少'{'。 – weirdpanda