多次元配列にある価格 (値) を取得するメソッドを作成する必要があり、1 セットの座標のみを返す必要があります。問題は、他の位置が同じ値を持つため、最初の座標だけでなく、その位置のすべての座標を返すことです。
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;
}