Jump to content

Jogo do galo: fazer jogada


DarkKnight

Recommended Posts

package jogoGalo;

import java.util.Scanner;

public class jogoGalo {

	static char tabuleiro [][];
	// inicia o tabuleiro
	public static void inicializaçãoDoTabuleiro () {
		tabuleiro = new char[3][3];
		 for (int i = 0; i < tabuleiro.length; i++) {
			for (int j = 0; j < tabuleiro.length; j++) {
				tabuleiro[i][j]=' ';
			}
		}
	}
	// desenha o tabuleiro
	public static void mostrarTabuleiro () {
		tabuleiro = new char[3][3];
		 for (int i = 0; i < tabuleiro.length; i++) {
			 System.out.println("----------");
			 System.out.print("| ");
			for (int j = 0; j < tabuleiro.length; j++) {
				System.out.print(" | ");
			}
			System.out.println();
		}
		 System.out.println("-----------");
		 
	}
	
  // faz uma jogada, mas não guarda o simbolo no tabuleiro não sei porque
	public static boolean fazerJogada(char simbolo){
		Scanner teclado = new Scanner(System.in);
		System.out.println("Insira a linha onde quer jogar");
		int linha = teclado.nextInt();
		if((linha < 1) || (linha > 3)){ //linha invalida
			return false;
			}
			System.out.println("Insira a coluna onde quer jogar");
			int coluna = teclado.nextInt();
			if((coluna < 1) || (coluna > 3)){ //coluna invalida
			return false;
			}
			//guardar a jogada que foi feita
			tabuleiro[linha-1][coluna-1] = simbolo;
			return true; //devolver sucesso

	}
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		char simboloCorrente='x';
		
		inicializaçãoDoTabuleiro();
		
		fazerJogada(simboloCorrente);
		mostrarTabuleiro();
	}

}

Olá. Eu precisava que me dessem pistas, sobre um problema neste código: Faço uma jogada mas o tabuleiro é mostrado vazio.  

Poderiam, assim por alto, detectar o erro?

Best regards

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.