From 88e97dc34ebe24927f64207ce80ae156829e6938 Mon Sep 17 00:00:00 2001 From: 3009594 Date: Thu, 29 Aug 2024 22:12:05 +0200 Subject: [PATCH] Excell --- Programmierung2/src/Übungen/Excel/Excell.java | 22 ++++ .../src/Übungen/TicTac/Controller.java | 73 ++++++++++++ .../src/Übungen/TicTac/Modell.java | 39 ++++++ .../src/Übungen/TicTac/Tic_Tac_Toe.java | 58 +++++++++ Programmierung2/src/Übungen/TicTac/View.java | 5 + Programmierung2/src/Übungen/Tic_Tac_Toe.java | 111 ------------------ 6 files changed, 197 insertions(+), 111 deletions(-) create mode 100644 Programmierung2/src/Übungen/Excel/Excell.java create mode 100644 Programmierung2/src/Übungen/TicTac/Controller.java create mode 100644 Programmierung2/src/Übungen/TicTac/Modell.java create mode 100644 Programmierung2/src/Übungen/TicTac/Tic_Tac_Toe.java create mode 100644 Programmierung2/src/Übungen/TicTac/View.java delete mode 100644 Programmierung2/src/Übungen/Tic_Tac_Toe.java diff --git a/Programmierung2/src/Übungen/Excel/Excell.java b/Programmierung2/src/Übungen/Excel/Excell.java new file mode 100644 index 0000000..3aa9f30 --- /dev/null +++ b/Programmierung2/src/Übungen/Excel/Excell.java @@ -0,0 +1,22 @@ +package Übungen.Excel; + +public class Excell { + private static char[] buchstaben; + public static void main(String[] args) { + fülleTabell(); + printTabelle(); + } + + public static void fülleTabell() { + buchstaben = new char[26]; + int i = 0; + for (char b = 'A'; b <= 'Z';b++) { + buchstaben[i++] = b; + } + } + + public static void printTabelle() { + for (char a: buchstaben) + System.out.print("| " + a + " |"); + } +} diff --git a/Programmierung2/src/Übungen/TicTac/Controller.java b/Programmierung2/src/Übungen/TicTac/Controller.java new file mode 100644 index 0000000..10e936d --- /dev/null +++ b/Programmierung2/src/Übungen/TicTac/Controller.java @@ -0,0 +1,73 @@ +package Übungen.TicTac; + +import java.util.Scanner; + +public class Controller { + static Scanner scan = new Scanner(System.in); + static String[][] spielField = new String[3][3]; + private Modell spieler1; + private Modell spieler2; + private View view; + + public Controller(Modell spieler1, Modell spieler2, View view) { + this.spieler1 = spieler1; + this.spieler2 = spieler2; + this.view = view; + } + + public static boolean checkSet(String X_O, int x, int y) { + if (x < 0 || x > 2 || y < 0 || y > 2) + return false; + + if (!(spielField[x][y].equals("-"))) + return false; + + return true; + } + + + public static boolean checkGewinner(String player) { + for (int i = 0; i < 3; i++) { + if (spielField[i][0].equals(player) && spielField[i][1].equals(player) && spielField[i][2].equals(player)) + return true; + } + for (int i = 0; i < 3; i++) { + if (spielField[0][i].equals(player) && spielField[1][i].equals(player) && spielField[2][i].equals(player)) + return true; + } + if (spielField[0][0].equals(player) && spielField[1][1].equals(player) && spielField[2][2].equals(player)) + return true; + + if (spielField[0][2].equals(player) && spielField[1][1].equals(player) && spielField[2][0].equals(player)) + return true; + + return false; + } + + public static void ausgabeSpielFeld(String X_O, int x, int y) { + spielField[x][y] = X_O; + for (int i = 0; i < 3; i++) { + for (int j = 0; j < 3; j++) { + System.out.print(spielField[i][j] + "|"); + } + System.out.println(); + } + } + + public static void printSpielfeld() { + for (int i = 0; i < 3; i++) { + for (int j = 0; j < 3; j++) { + if (j == 2) { + spielField[i][j] = "-"; + System.out.print(spielField[i][j]); + } else { + spielField[i][j] = "-"; + System.out.print(spielField[i][j]); + System.out.print("|"); + } + } + System.out.println(); + } + } + +} diff --git a/Programmierung2/src/Übungen/TicTac/Modell.java b/Programmierung2/src/Übungen/TicTac/Modell.java new file mode 100644 index 0000000..c1d904b --- /dev/null +++ b/Programmierung2/src/Übungen/TicTac/Modell.java @@ -0,0 +1,39 @@ +package Übungen.TicTac; + +public class Modell { + + private String name; + private String vorname; + private int anzahlGewinn; + private String zeichen; + + public Modell(String name, String vorname, int anzahlGewinn,String zeichen) { + this.name = name; + this.vorname = vorname; + this.anzahlGewinn = anzahlGewinn; + this.zeichen = zeichen; + } + + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + public String getVorname() { + return vorname; + } + public void setVorname(String vorname) { + this.vorname = vorname; + } + public int getAnzahlGewinn() { + return anzahlGewinn; + } + public void setAnzahlGewinn(int anzahlGewinn) { + this.anzahlGewinn = anzahlGewinn; + } + + public String getZeichen() { + return zeichen; + } +} diff --git a/Programmierung2/src/Übungen/TicTac/Tic_Tac_Toe.java b/Programmierung2/src/Übungen/TicTac/Tic_Tac_Toe.java new file mode 100644 index 0000000..3c60d62 --- /dev/null +++ b/Programmierung2/src/Übungen/TicTac/Tic_Tac_Toe.java @@ -0,0 +1,58 @@ +package Übungen.TicTac; +import java.util.Scanner; + +public class Tic_Tac_Toe { + + + public static void main(String[] args){ + +// +// printSpielfeld(); +// while (true) { +// System.out.println("Bitte geben Sie 'x' und neue Position ein: "); +// String playerx =scan.nextLine(); +// int x = scan.nextInt(); +// int y = scan.nextInt(); +// while (!checkSet(playerx, x, y)) { +// scan.nextLine(); +// System.out.println("Falsche Eingabe! Versuchen Sie nochmal: "); +// playerx =scan.nextLine(); +// x = scan.nextInt(); +// y = scan.nextInt(); +// if (checkSet(playerx, x, y)) +// break; +// } +// ausgabeSpielFeld(playerx, x, y); +// if (checkGewinner(playerx)) { +// System.out.println("Spieler X hat gewonnen!"); +// break; +// } +// scan.nextLine(); +// +// System.out.println("Bitte geben Sie 'O' und neue Position ein: "); +// String playero =scan.nextLine(); +// x = scan.nextInt(); +// y = scan.nextInt(); +// while (!checkSet(playero, x, y)) { +// scan.nextLine(); +// System.out.println("Falsche Eingabe! Versuchen Sie nochmal: "); +// playero =scan.nextLine(); +// x = scan.nextInt(); +// y = scan.nextInt(); +// } +// ausgabeSpielFeld(playero, x, y); +// if (checkGewinner(playero)) { +// System.out.println("Spieler O hat gewonnen!"); +// break; +// } +// scan.nextLine(); +// } +// } +// +// + + + + + } +} diff --git a/Programmierung2/src/Übungen/TicTac/View.java b/Programmierung2/src/Übungen/TicTac/View.java new file mode 100644 index 0000000..6a103ef --- /dev/null +++ b/Programmierung2/src/Übungen/TicTac/View.java @@ -0,0 +1,5 @@ +package Übungen.TicTac; + +public class View { + +} diff --git a/Programmierung2/src/Übungen/Tic_Tac_Toe.java b/Programmierung2/src/Übungen/Tic_Tac_Toe.java deleted file mode 100644 index 21f9e5c..0000000 --- a/Programmierung2/src/Übungen/Tic_Tac_Toe.java +++ /dev/null @@ -1,111 +0,0 @@ -package Übungen; -import java.util.Scanner; - -public class Tic_Tac_Toe { - static Scanner scan = new Scanner(System.in); - static String[][] spielField = new String[3][3]; - static final String playerx = "x" ; - static final String playero = "o" ; - - public static void main(String[] args){ - - - printSpielfeld(); - while (true) { - System.out.println("Bitte geben Sie 'x' und neue Position ein: "); - String playerx =scan.nextLine(); - int x = scan.nextInt(); - int y = scan.nextInt(); - while (!checkSet(playerx, x, y)) { - scan.nextLine(); - System.out.println("Falsche Eingabe! Versuchen Sie nochmal: "); - playerx =scan.nextLine(); - x = scan.nextInt(); - y = scan.nextInt(); - if (checkSet(playerx, x, y)) - break; - } - ausgabeSpielFeld(playerx, x, y); - if (checkGewinner(playerx)) { - System.out.println("Spieler X hat gewonnen!"); - break; - } - scan.nextLine(); - - System.out.println("Bitte geben Sie 'O' und neue Position ein: "); - String playero =scan.nextLine(); - x = scan.nextInt(); - y = scan.nextInt(); - while (!checkSet(playero, x, y)) { - scan.nextLine(); - System.out.println("Falsche Eingabe! Versuchen Sie nochmal: "); - playero =scan.nextLine(); - x = scan.nextInt(); - y = scan.nextInt(); - } - ausgabeSpielFeld(playero, x, y); - if (checkGewinner(playero)) { - System.out.println("Spieler O hat gewonnen!"); - break; - } - scan.nextLine(); - } - } - - public static boolean checkSet(String X_O, int x, int y){ - if ( x < 0 || x > 2 || y < 0 || y > 2) - return false; - - if (!(spielField[x][y].equals("-")) ) - return false; - - return true; - } - - public static boolean checkGewinner(String player){ - for(int i = 0 ; i < 3; i++){ - if (spielField[i][0].equals(player) && spielField[i][1].equals(player) && spielField[i][2].equals(player)) - return true; - } - for (int i = 0; i < 3; i++){ - if (spielField[0][i].equals(player) &&spielField[1][i].equals(player) &&spielField[2][i].equals(player)) - return true; - } - if (spielField[0][0].equals(player)&& spielField[1][1].equals(player)&& spielField[2][2].equals(player)) - return true; - - if (spielField[0][2].equals(player)&& spielField[1][1].equals(player)&& spielField[2][0].equals(player)) - return true; - - return false; - } - - public static void ausgabeSpielFeld(String X_O, int x, int y){ - spielField[x][y] = X_O; - for (int i = 0; i < 3; i++){ - for (int j = 0; j < 3; j++){ - System.out.print(spielField[i][j] + "|"); - } - System.out.println(); - } - - - - } - public static void printSpielfeld(){ - for (int i = 0; i < 3; i++){ - for (int j = 0; j < 3; j++){ - if (j == 2){ - spielField[i][j] = "-"; - System.out.print(spielField[i][j]); - }else{ - spielField[i][j] = "-"; - System.out.print(spielField[i][j]); - System.out.print("|"); - } - } - System.out.println(); - } - - } -}