From 1c5a8fe7cb6c9d0a7d2a59fb0c1ddff6a6da2c8a Mon Sep 17 00:00:00 2001 From: Hanin Aljalab <3009857@stud.hs-mannheim.de> Date: Fri, 11 Oct 2024 13:59:01 +0200 Subject: [PATCH] =?UTF-8?q?src/main/java/org/example/Main.java=20gel=C3=B6?= =?UTF-8?q?scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/org/example/Main.java | 127 ---------------------------- 1 file changed, 127 deletions(-) delete mode 100644 src/main/java/org/example/Main.java diff --git a/src/main/java/org/example/Main.java b/src/main/java/org/example/Main.java deleted file mode 100644 index df023f5..0000000 --- a/src/main/java/org/example/Main.java +++ /dev/null @@ -1,127 +0,0 @@ -package org.example; -/** - * Tic Tac Toe Game - * @author: Hanin Aljalab - */ - - -import java.util.Random; -import java.util.Scanner; - -public class Main { - public static void main(String[] args) { - - // Decleration of the variables - char[][] board = {{' ', ' ', ' '}, - {' ', ' ', ' '}, - {' ', ' ', ' '} - }; - int player; - boolean win; - - // Initialize the variables - player = 1; - win = false; - - // creating the "Scanner" - Scanner sc = new Scanner(System.in); - - // Start the game - while (!win && !isBoardFull(board)) { - spielfeldAusgeben(board); - - if (player == 1) { - // Player's turn - spielerZug(board, sc); - } else { - // Computer's turn - computerZug(board); - } - - // Check for a win or draw - win = isWin(board); - if (!win) { - player = (player == 1) ? 2 : 1; // change the player - } - } - - spielfeldAusgeben(board); - - if (win) { - System.out.println("Spieler " + player + " gewinnt!"); - } else { - System.out.println("Unentschieden!"); - } - } - - // print the game board - public static void spielfeldAusgeben(char[][] board) { - for (int i = 0; i < board.length; i++) { - for (int j = 0; j < board[i].length; j++) { - System.out.print(" [" + board[i][j] + "] "); - } - System.out.println(); - } - } - - // - public static void spielerZug(char[][] board, Scanner sc) { - System.out.println("Spieler, geben Sie Ihre Position ein (1-9): "); - int input = sc.nextInt(); - - // Convert input in row and column - int row = (input - 1) / 3; - int col = (input - 1) % 3; - - // Check whether the position is valid and the field is not occupied - if (input >= 1 && input <= 9 && board[row][col] == ' ') { - board[row][col] = 'O'; - } else { - System.out.println("Ungültige Position. Bitte erneut versuchen."); - spielerZug(board, sc); // Recursive call for new input - } - } - - public static void computerZug(char[][] board) { - Random ra = new Random(); - int row, col; - - do { - row = ra.nextInt(board.length); - col = ra.nextInt(board.length); - } while (board[row][col] != ' '); - - board[row][col] = 'X'; - } - - public static boolean isWin(char[][] board) { - // Check for profit in rows, columns and diagonals - for (int i = 0; i < 3; i++) { - // Profit in rows - if (board[i][0] == board[i][1] && board[i][1] == board[i][2] && board[i][0] != ' ') { - return true; - } - // Profit in columns - if (board[0][i] == board[1][i] && board[1][i] == board[2][i] && board[0][i] != ' ') { - return true; - } - } - // Profit in diagonals - if ((board[0][0] == board[1][1] && board[1][1] == board[2][2] && board[0][0] != ' ') || (board[0][2] == board[1][1] && board[1][1] == board[2][0] && board[0][2] != ' ')) { - return true; - } - return false; - } - - public static boolean isBoardFull(char[][] board) { - // Check whether the pitch is full (draw) - for (int i = 0; i < board.length; i++) { - for (int j = 0; j < board[i].length; j++) { - if (board[i][j] == ' ') { - return false; // There are still empty positions - } - } - } - return true; // All positions have been filled - } -}