我正在尝试制作一个小方法,允许用户将犯罪输入到“犯罪数据库”中,它只会显示犯下该罪行的罪犯。
不幸的是,我必须使用二维数组。我写了一个方法,但它没有给我我正在寻找的输出。
这是方法:
//method to search data
public static void searchData() throws IOException{
int flag = 0;
boolean found = false;
//input search key
System.out.print("Which crime would you like to select? (arson, theft, assault) ");
String searchKey = br.readLine();
System.out.println("You searched for criminals with the offence of \"" + searchKey + "\".");
System.out.println("Name - Crime - Year of Conviction");
for(int i = 0; i < criminals.length; i++){
if(searchKey.compareTo(criminals[i][1]) == 0){
flag = i;
found = true;
}
}
if(found == false){
System.out.println("Error! Crime not found.");
}else{
System.out.println("Criminals found.");
for(int i = 0; i < criminals.length; i++){
System.out.println(criminals[flag][0] + " - " + criminals[flag][1] + " - " + criminals[flag][2]);
}
}
}
我的意见是这样的:
George - theft - 1999
Eddie - assault - 2003
Al - theft - 1999
这是测试后的输出:
Which crime would you like to select? (arson, theft, assault) theft
You searched for criminals with the offence of "theft".
Criminals found.
Al - theft - 1999
Al - theft - 1999
Al - theft - 1999
你能帮我弄清楚这有什么问题吗?提前致谢。:)