我有兩個字符串數組比較兩個字符串數組來檢查輸入的值是有字符串數組中
String[] Mids contains
MSI
MSU
MSV
String[] sl contains
MSU
MSV
MSS
實際產量應該是
Action
Action
Action cannot be set
for(int i=0;i<sl.length;i++){
for(int j=0;j<Mids.length;j++){
if((sl[i].equals(Mids[j]))){
System.out.println("Action");
}else{
System.out.println("Action cannot be set");
}
}
}
輸出,我得到
Action cannot be set
Action cannot be set
Action cannot be set
Action cannot be set
Action
Action cannot be set
Action
Action cannot be set
Action cannot be set
現在大家都預期)來找出你真的很想,b)你失敗的地方,以及c)如何解決它?你如何給我們提供關於你想要完成什麼(以及爲什麼)的更多細節。 – Bombe 2011-03-25 08:21:13
你是否被迫使用數組?什麼地方出了錯? – 2011-03-25 08:32:23