【发布时间】:2013-03-15 01:35:10
【问题描述】:
我正在编写一个程序,该程序的作用类似于检票器。它显示可能的座位选择图表及其价格,并询问用户是否希望按数量或价格选择座位。它的工作原理就像它假设的按号码在座位上一样,但是当我尝试按价格找到座位时,我得到一个数组索引超出范围错误。我很困惑,因为它假设从零开始线性搜索。我不明白为什么会出现这个错误。
import java.util.Scanner;
public class FindTicket{
public static void main(String[] args){
String answer="number";
Scanner kb=new Scanner(System.in);
int[][] seats= {
{10,10,10,10,10,10,10,10,10,10},
{10,10,10,10,10,10,10,10,10,10},
{10,10,10,10,10,10,10,10,10,10},
{10,10,20,20,20,20,20,20,10,10},
{10,10,20,20,20,20,20,20,10,10},
{10,10,20,20,20,20,20,20,10,10},
{20,20,30,40,40,40,30,30,20,20},
{20,30,30,40,50,50,40,30,30,20},
{30,40,50,50,50,50,50,50,40,30}
};
printChart(seats);
do{
System.out.println("Would you like to choose a seat by number, price, or quit?");
answer = kb.nextLine();
if(answer.equals("price")){
sellSeatbyPrice(seats);}
if(answer.equals("number")){
sellSeatbyNumber(seats);}
printChart(seats);
}while(!answer.equals("quit"));
}
public static void printChart(int[][] seats){
for (int i=0; i<seats.length; i++)
{
for(int j=0; j<seats[0].length; j++)
{
System.out.printf("%8d", seats[i][j]);
}
System.out.println();
}
}
public static int[][] sellSeatbyPrice(int[][] seats){
Scanner kb=new Scanner(System.in);
int ticketprice;
int row = 0, col = 0;
boolean found = false, seatavaliable=true;
do{
System.out.println("What is your prefered ticket price?");
ticketprice=kb.nextInt();
while (row<seats.length && !found){
do{
if(seats[row][col] == ticketprice){
found = true;}
else{
col++; }
}while(col<seats[0].length &&!found);
if(seats[row][col] == ticketprice){
found = true;}
else{
row++;}
}
if(found){
seats[row][col] = 0; }
else {
System.out.println("Seat not found at specified price.");
seatavaliable=false;}
}while(seatavaliable==false);
return seats;
}
public static int[][] sellSeatbyNumber(int[][] seats){
Scanner kb=new Scanner(System.in);
int row = 0, col = 0;
int editedrow, editedcol;
boolean seatavaliable = true;
do{
System.out.println("What is your prefered seat number? Please enter row then column.");
row=kb.nextInt();
col=kb.nextInt();
editedrow = 9-row;
editedcol = col - 1;
if(seats[editedrow][editedcol] > 0){
seats[editedrow][editedcol] = 0;}
else{
System.out.println("Seat is not avaliable.");
seatavaliable=false;}
}while(seatavaliable==false);
return seats;
}
}
【问题讨论】:
-
您在哪一行出现越界错误?
-
要求人们发现代码中的错误并不是特别有效。您应该使用调试器(或添加打印语句)来隔离问题,方法是跟踪程序的进度,并将其与您期望发生的情况进行比较。一旦两者发生分歧,你就发现了你的问题。 (然后如果有必要,你应该构造一个minimal test-case。)
-
@Michael 它说我在 27 和 61 有错误。
-
@Oil Charlesworth 对于我的课程,我们必须使用 JGrasp,而且我们还没有学习过调试器。我可以在网上找到这些信息吗?
标签: java multidimensional-array linear-search