commit Ife

master
ifemb 2022-10-26 13:52:23 +02:00
parent 8ac6c994a6
commit f096db01ae
4 changed files with 37 additions and 1 deletions

5
.classpath 100644
View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>

17
.project 100644
View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>PR1Uebung2</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

11
Ife.java 100644
View File

@ -0,0 +1,11 @@
public class Ife {
void SpielbrettAusgabe() {
System.out.println("[1] [2] [3]\n[4] [5] [6]\n[7] [8] [9]");
public static void main(String[] args) {
System.out.println("Hello World");
}
}

View File

@ -1,9 +1,12 @@
package PR1Uebung2; package PR1Uebung2;
import java.util.*; import java.util.*;
public class TicTacToe { public class TicTacToe {
}
public static void main(String[] args) { public static void main(String[] args) {
// TODO Auto-generated method stub System.out.println("Hello");
} }