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.

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