Excell
parent
7f3f5d6ded
commit
88e97dc34e
|
@ -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 + " |");
|
||||||
|
}
|
||||||
|
}
|
|
@ -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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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();
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
package Übungen.TicTac;
|
||||||
|
|
||||||
|
public class View {
|
||||||
|
|
||||||
|
}
|
|
@ -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();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue