我必须创建一个方法,该方法采用位于多维数组上的价格(一个值),并且它只需要返回一组坐标。问题是其他位置具有相同的值,因此它返回该位置的所有坐标,而不仅仅是第一个坐标。
public static int availSeats(int a[][], int seatPrice){
int seats=seatPrice;
for(int row=0;row<rows;row++){
for(int col=0;col<cols;col++){
if(seats==a[row][col]){
int priceRow=row;
int priceCol=col;
System.out.println("Seat: "+priceRow+","+priceCol);
}
}}
return seats;
}