You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

196 lines
5.1 KiB

  1. package LernProgramm;
  2. import java.util.Random;
  3. import java.util.Scanner;
  4. public class ProgrammMain {
  5. // Aufzurufende Funktionen
  6. // Karteikarten
  7. public static void Karteikarten() {
  8. try (Scanner input = new Scanner(System.in)) {
  9. String[][] karteikarten = { { "Was ist die Hauptstadt von Deutschland?", "Berlin" },
  10. { "Welches ist der größtes Planet in unserem Sonnensystem?", "Jupiter" },
  11. { "Wer hat die Mona Lisa gemalt?", "Leonardo da Vinci" },
  12. // Sonstige Fragen
  13. };
  14. int counter = 0;
  15. for (String[] karteikarte : karteikarten) {
  16. System.out.println(karteikarte[0]);
  17. String answer = input.nextLine();
  18. if (answer.equalsIgnoreCase(karteikarte[1])) {
  19. System.out.println("Korrekt!");
  20. counter++;
  21. } else {
  22. System.out.println("Leider falsch. Die richtige Antwort wäre: " + karteikarte[1]);
  23. }
  24. }
  25. System.out.println("Dein Punktestand ist " + counter + " von insgesamt " + karteikarten.length);
  26. }
  27. }
  28. // Quizz
  29. public static void Quizz() {
  30. Random rand = new Random();
  31. try (Scanner scanner = new Scanner(System.in)) {
  32. String[][] questions = {
  33. { "Welche Farbe hat ein Bananen?", "A) Gelb", "B) Grün", "C) Blau", "D) Rot", "A" },
  34. { "Wie viele Beine hat eine Spinne?", "A) 4", "B) 6", "C) 8", "D) 10", "C" },
  35. { "Wer hat die Formel E=mc² entwickelt?", "A) Isaac Newton", "B) Albert Einstein",
  36. "C) Galileo Galilei", "D) Stephen Hawking", "B" },
  37. { "Welches ist der größte Planet im Sonnensystem?", "A) Merkur", "B) Venus", "C) Erde",
  38. "D) Jupiter", "D" }
  39. // Sonstige Fragen
  40. };
  41. int questionIndex = rand.nextInt(questions.length);
  42. String[] currentQuestion = questions[questionIndex];
  43. System.out.println(currentQuestion[0]);
  44. System.out.println(currentQuestion[1]);
  45. System.out.println(currentQuestion[2]);
  46. System.out.println(currentQuestion[3]);
  47. System.out.println(currentQuestion[4]);
  48. String answer = scanner.nextLine();
  49. if (answer.equalsIgnoreCase(currentQuestion[5])) {
  50. System.out.println("Richtig!");
  51. } else {
  52. System.out.println("Falsch!");
  53. }
  54. }
  55. }
  56. // Prinmbis100
  57. public static void PrimBis100() {
  58. for (int i = 2; i <= 100; i++) {
  59. boolean isPrime = true;
  60. for (int j = 2; j < i; j++) {
  61. if (i % j == 0) {
  62. isPrime = false;
  63. break;
  64. }
  65. }
  66. if (isPrime) {
  67. System.out.print(i + " ");
  68. }
  69. }
  70. }
  71. // Binärinverter
  72. public static void Binaerrechner() {
  73. try (Scanner scanner = new Scanner(System.in)) {
  74. System.out.print("Gebe den ersten Binärcode ein: ");
  75. String binaryCode1 = scanner.nextLine();
  76. System.out.print("Gebe den zweiten Binärcode ein: ");
  77. String binaryCode2 = scanner.nextLine();
  78. System.out.print("Gebe die gewünschte Operation ein (+, -, *, /): ");
  79. char operation = scanner.next().charAt(0);
  80. int result = calculate(binaryCode1, binaryCode2, operation);
  81. System.out.println("Das Ergebnis ist: " + result);
  82. }
  83. }
  84. public static int calculate(String binaryCode1, String binaryCode2, char operation) {
  85. int decimal1 = binaryToDecimal(binaryCode1);
  86. int decimal2 = binaryToDecimal(binaryCode2);
  87. int result = 0;
  88. switch (operation) {
  89. case '+':
  90. result = decimal1 + decimal2;
  91. break;
  92. case '-':
  93. result = decimal1 - decimal2;
  94. break;
  95. case '*':
  96. result = decimal1 * decimal2;
  97. break;
  98. case '/':
  99. result = decimal1 / decimal2;
  100. break;
  101. default:
  102. System.out.println("Ungültige Operation! Bitte wähle +, -, * oder /.");
  103. return 0;
  104. }
  105. return decimalToBinary(result);
  106. }
  107. public static int binaryToDecimal(String binaryCode) {
  108. int decimal = 0;
  109. for (int i = binaryCode.length() - 1; i >= 0; i--) {
  110. char currentChar = binaryCode.charAt(i);
  111. if (currentChar == '1') {
  112. decimal += Math.pow(2, binaryCode.length() - i - 1);
  113. } else if (currentChar != '0') {
  114. System.out.println("Ungültiger Binärcode! Bitte gebe nur Nullen und Einsen ein.");
  115. return 0;
  116. }
  117. }
  118. return decimal;
  119. }
  120. public static int decimalToBinary(int decimal) {
  121. int binary = 0;
  122. int power = 0;
  123. while (decimal > 0) {
  124. binary += (decimal % 2) * (int) Math.pow(10, power);
  125. decimal /= 2;
  126. power++;
  127. }
  128. return binary;
  129. }
  130. public static void main(String[] args) {
  131. System.out.println("Willkommen bei diesem kleinen konsolenbasierten Spiel!\n");
  132. System.out.println("Du hast 3 Spielmodi!\n");
  133. System.out.println("1. Karteikarten\n");
  134. System.out.println("2. Quizz\n");
  135. System.out.println("3. Binaer-Inverter\n");
  136. System.out.println("4. PrimZahlenAusgabe\n");
  137. try (Scanner einleser = new Scanner(System.in)) {
  138. int wahl = einleser.nextInt();
  139. switch (wahl) {
  140. case 1:
  141. Karteikarten();
  142. break;
  143. case 2:
  144. Quizz();
  145. // Funktion
  146. break;
  147. case 3:
  148. PrimBis100();
  149. // Funktion
  150. break;
  151. case 4:
  152. Binaerrechner();
  153. // Funktion
  154. break;
  155. case 5:
  156. System.out.println(
  157. "Diese Funktion wird derzeit entwickelt! Hab bitte etwas Geduld oder sei kreativ und erstelle dir selber eine Funktion!");
  158. // Funktion
  159. break;
  160. default:
  161. System.out.println("Ungültige Eingabe, versuche es bitte erneut!\n");
  162. }
  163. }
  164. System.out.println("Programm beendet\n");
  165. }
  166. }