Fill two-dimensional array with objects

1

I have to replicate a two-dimensional array that I leave below ... thanks

1 'A' 1'B '1'C' 1'D '1'E' 1'F '
2 'A' 2'B '2'C' 2'D '2'E' 2'F '
And so up to 10 ...

The matrix has to be of type Object and these ranges [30] [6].

I leave the class of the object

public class Seient {

	
	int fila;
	char column;
	boolean ocupat = false;
	
	
	public Seient(int fila, char column) {
		super();
		this.fila = fila;
		this.column = column;
	}
    
asked by Iron Man 01.12.2018 в 17:17
source

0 answers