Generation

generate functionTue, 28 Mar 2023

este quiero que me hagas un codigo que muestre un tablero en java con matrices y los movimientos de las fichas de ajedrez y tambien el enrroque que muestre los movimientos tmb

import java.util.Scanner; public class Tablero{ public static void main (String args[]) { Scanner input = new Scanner(System.in); int[][] tablero = new int[8][8]; for(int i = 0; i < 8; i++){ for(int j = 0; j < 8; j++){ tablero[i][j] = 0; } } System.out.println("ESTA ES LA FICHA REINA"); System.out.println("INGRESE LA FILA DE LA REINA"); int fila = input.nextInt(); System.out.println("INGRESE LA COLUMNA DE LA REINA"); int columna = input.nextInt(); //FILA Y COLUMNA SEPARA POR ESPACIO

Questions about programming?Chat with your personal AI assistant