Lösungsansätze für "Exercises" vom 7.5.2024
parent
1c5a95e456
commit
568bc0cbbe
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<classpath>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk-22">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="src" path="src"/>
|
||||||
|
<classpathentry kind="output" path="bin"/>
|
||||||
|
</classpath>
|
|
@ -0,0 +1 @@
|
||||||
|
/bin/
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>Sonderübungen</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>
|
|
@ -0,0 +1,2 @@
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
encoding/<project>=UTF-8
|
|
@ -0,0 +1,14 @@
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.targetPlatform=21
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||||
|
org.eclipse.jdt.core.compiler.compliance=21
|
||||||
|
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||||
|
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||||
|
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||||
|
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||||
|
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||||
|
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
|
||||||
|
org.eclipse.jdt.core.compiler.release=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.source=21
|
|
@ -0,0 +1,25 @@
|
||||||
|
//import java.util.Scanner;
|
||||||
|
import java.util.Random;
|
||||||
|
public class Aufgabe1 {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
//Scanner sc = new Scanner(System.in);
|
||||||
|
//int Eingabe = sc.nextInt();
|
||||||
|
//sc.close();
|
||||||
|
//Erstelle einen sechsseitigen Würfel in Java. Würfle einmal und gebe das Ergebnis aus.
|
||||||
|
Random rand = new Random();
|
||||||
|
int supremum = 6;
|
||||||
|
int wuerfel = rand.nextInt(supremum) + 1;
|
||||||
|
System.out.println("Würfel mit 6 Augen" + wuerfel);
|
||||||
|
|
||||||
|
//Erstelle einen vier- / acht- / zehn- / zwölf-/ zwanzigseitigen Würfel in Java. Gebe auch das Ergebnis eines Wurfes aus.
|
||||||
|
int[] wuerfelAugen = {4, 8, 10, 12, 20};
|
||||||
|
String[] wuerfelnamen = {"Vierer Würfel: ", "Achter Würfel: ", "Zehner Würfel: ", "Zwölfer Würfel: ", "Zwanziger Würfel: "};
|
||||||
|
for (int i = 0; i < 5; i++) {
|
||||||
|
int wurf = rand.nextInt(wuerfelAugen[i]) + 1;
|
||||||
|
System.out.println(wuerfelnamen[i] + wurf );
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
public class Exercise2 {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
//Würfle einen sechsseitigen Würfel 100 mal. Gebe jedes Ergebnis aus
|
||||||
|
System.out.println("100 Wuerfe eines 6 seitigen Wuerfels: ");
|
||||||
|
Random rand = new Random();
|
||||||
|
int supremum = 6;
|
||||||
|
for (int i = 1; i <= 100; i++) {
|
||||||
|
String maxSchaden = "";
|
||||||
|
int wuerfel = rand.nextInt(supremum) + 1;
|
||||||
|
if (wuerfel == 6) {
|
||||||
|
maxSchaden = " Max Schaden";
|
||||||
|
}
|
||||||
|
System.out.println("Würfel mit 6 Augen: " + wuerfel + maxSchaden);
|
||||||
|
//Wenn eine Sechs gewürfelt wird, gebe zusätzlich aus der gleichen Zeile den String "Max Schaden" aus.
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
public class exercise3 {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
// Würfle einen sechsseitigen Würfel solange, bis insgesamt 3 mal die Sechs gewürfelt wurde
|
||||||
|
Random rand = new Random();
|
||||||
|
int i = 0;
|
||||||
|
int j = 0;
|
||||||
|
int supremum = 6;
|
||||||
|
while (i < 3){
|
||||||
|
int wuerfel = rand.nextInt(supremum) + 1;
|
||||||
|
if (wuerfel == 6) i += 1;
|
||||||
|
System.out.println("Würfel mit 6 Augen: " + wuerfel + " " + i);
|
||||||
|
}
|
||||||
|
//Würfle einen sechsseitigen Würfel solange bis 3 mal hintereinander die Sechs gewürfelt wurde
|
||||||
|
while (j < 3){
|
||||||
|
int wuerfel = rand.nextInt(supremum) + 1;
|
||||||
|
if (wuerfel == 6) j += 1;
|
||||||
|
else j = 0;
|
||||||
|
System.out.println("neuer Würfel: " + wuerfel + " " + j);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
public class exercise4 {
|
||||||
|
//Erstelle eine Methode int roll(int diceType) welche einen Würfel mit der Augenzahl int diceType würfelt und das Ergebnis zurück liefert.
|
||||||
|
|
||||||
|
static int roll(int diceType) {
|
||||||
|
Random rand = new Random();
|
||||||
|
int wurf = rand.nextInt(diceType) + 1;
|
||||||
|
return wurf;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Erstelle eine Methode int roll(int diceType, int modifier)
|
||||||
|
//welche einen Würfel mit der Augenzahl int diceType würfelt und das Ergebnis mit dem int modifier addiert und als Ergebnis zurück liefert
|
||||||
|
static int roll(int diceType, int modifier) {
|
||||||
|
Random rand = new Random();
|
||||||
|
int wurf = rand.nextInt(diceType) + 1;
|
||||||
|
return wurf + modifier;
|
||||||
|
}
|
||||||
|
public static void main(String[] args) {
|
||||||
|
int augenzahl = 4;
|
||||||
|
int modifier = 5;
|
||||||
|
System.out.println(roll(augenzahl, modifier));
|
||||||
|
System.out.println(roll(augenzahl));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
import java.util.Scanner;
|
||||||
|
public class exercise5 {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
double x,s,y,d;
|
||||||
|
//Sei x die Zahl, deren Quadratwurzel bestimmt werden soll
|
||||||
|
System.out.println("Geben Sie die Zahl ein aus der die Wurzel gezogen wird: ");
|
||||||
|
Scanner in = new Scanner(System.in);
|
||||||
|
x = in.nextDouble();
|
||||||
|
in.close();
|
||||||
|
//Gebe eine Schätzung ab , was die Quadratwurzel von von x ist
|
||||||
|
s = x/2;
|
||||||
|
for (int i = 0; i < 20; ++i) {
|
||||||
|
//Bilde den Quotienten zwischen x und der Schätzung. Wir nennen Sie y.
|
||||||
|
y = (x/s);
|
||||||
|
// Bilde den Durchschnitt Zwischen der Schätzung und y
|
||||||
|
d = (y+s)/2;
|
||||||
|
s = d;
|
||||||
|
}
|
||||||
|
System.out.println("Die Wurzel von " + x + " ist: " + s);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue