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.

230 lines
6.5 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. package LernProgramm;
  2. import java.util.Random;
  3. import java.util.Scanner;
  4. public class FunktionenAusgelagert {
  5. //Funktionen, die von der main Funktion ausgelagert wurden, da sonts zu unüberscihtlich
  6. //1
  7. public static void Karteikarten() {
  8. try (Scanner eingabeKK = 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. { "Wer hat den Z1 entworfen?", "Zuse" },
  14. { "W", "Olaf Scholz" },
  15. { "Wer ist der Bundeskanzler von Deutschland?", "Olaf Scholz" },
  16. // Sonstige Fragen
  17. };
  18. int PunkteZähler = 0;
  19. for (String[] karteikarte : karteikarten) {
  20. System.out.println(karteikarte[0]);
  21. String answer = eingabeKK.nextLine();
  22. if (answer.equalsIgnoreCase(karteikarte[1])) {
  23. System.out.println("Korrekt!");
  24. PunkteZähler++;
  25. } else {
  26. System.out.println("Leider falsch. Die richtige Antwort wäre: " + karteikarte[1]);
  27. }
  28. }
  29. System.out.println("Dein Punktestand ist " + PunkteZähler + " von insgesamt " + karteikarten.length);
  30. }
  31. }
  32. //2
  33. public static void Fakultaet() {
  34. try (Scanner eingabeFK = new Scanner(System.in)) {
  35. String ein = eingabeFK.nextLine();
  36. int zahlFK = Integer.parseInt(ein);
  37. if (zahlFK <= 0) {
  38. System.out.println("1");
  39. }
  40. int ergebnis = 1;
  41. for (int i = 1; i <= zahlFK; i++) {
  42. ergebnis *= i;
  43. }
  44. System.out.println(ergebnis);
  45. } catch (NumberFormatException e) {
  46. e.printStackTrace();
  47. }
  48. }
  49. //3
  50. public static void schaltjahr() {
  51. System.out.println("Welches Jahr möchtest du untersuchen?");
  52. try (Scanner einSJ = new Scanner(System.in)) {
  53. String jahr = einSJ.nextLine();
  54. int schaltjahr = Integer.parseInt(jahr);
  55. if (schaltjahr % 400 == 0)
  56. System.out.println("Schaltjahr!");
  57. else if (schaltjahr % 100 == 0)
  58. System.out.println("Kein Schaltjahr!");
  59. else if (schaltjahr % 4 == 0)
  60. System.out.println("Schaltjahr!");
  61. else
  62. System.out.println("Kein Schaltjahr!");
  63. } catch (NumberFormatException e) {
  64. e.printStackTrace();
  65. }
  66. }
  67. //4
  68. public static void Quizz() {
  69. Random rand = new Random();
  70. try (Scanner einQ = new Scanner(System.in)) {
  71. String[][] fragen = {
  72. { "Welche Farbe hat ein Bananen?", "A) Gelb", "B) Grün", "C) Blau", "D) Rot", "A" },
  73. { "Wie viele Beine hat eine Spinne?", "A) 4", "B) 6", "C) 8", "D) 10", "C" },
  74. { "Wer hat die Formel E=mc² entwickelt?", "A) Isaac Newton", "B) Albert Einstein",
  75. "C) Galileo Galilei", "D) Stephen Hawking", "B" },
  76. { "Welches ist der größte Planet im Sonnensystem?", "A) Merkur", "B) Venus", "C) Erde",
  77. "D) Jupiter", "D" }
  78. // Sonstige Fragen
  79. };
  80. int questionIndex = rand.nextInt(fragen.length);
  81. String[] currentQuestion = fragen[questionIndex];
  82. System.out.println(currentQuestion[0]);
  83. System.out.println(currentQuestion[1]);
  84. System.out.println(currentQuestion[2]);
  85. System.out.println(currentQuestion[3]);
  86. System.out.println(currentQuestion[4]);
  87. String antwort = einQ.nextLine();
  88. if (antwort.equalsIgnoreCase(currentQuestion[5])) {
  89. System.out.println("Richtig!");
  90. } else {
  91. System.out.println("Falsch!");
  92. }
  93. }
  94. }
  95. //5
  96. public static void Binaerrechner() {
  97. try (Scanner scannerBR = new Scanner(System.in)) {
  98. System.out.print("Gebe den ersten Binärcode ein: ");
  99. String binaerCode1 = scannerBR.nextLine();
  100. System.out.print("Gebe den zweiten Binärcode ein: ");
  101. String binaerCode2 = scannerBR.nextLine();
  102. System.out.print("Gebe die gewünschte Operation ein (+, -, *, /): ");
  103. char operation = scannerBR.next().charAt(0);
  104. int ergebnisBR = calculate(binaerCode1, binaerCode2, operation);
  105. System.out.println("Das Ergebnis ist: " + ergebnisBR);
  106. }
  107. }
  108. public static int calculate(String binaryCode1, String binaryCode2, char operation) {
  109. int decimal1 = binaryToDecimal(binaryCode1);
  110. int decimal2 = binaryToDecimal(binaryCode2);
  111. int result = 0;
  112. switch (operation) {
  113. case '+':
  114. result = decimal1 + decimal2;
  115. break;
  116. case '-':
  117. result = decimal1 - decimal2;
  118. break;
  119. case '*':
  120. result = decimal1 * decimal2;
  121. break;
  122. case '/':
  123. result = decimal1 / decimal2;
  124. break;
  125. default:
  126. System.out.println("Ungültige Operation! Bitte wähle +, -, * oder /.");
  127. return 0;
  128. }
  129. return decimalToBinary(result);
  130. }
  131. public static int binaryToDecimal(String binaryCode) {
  132. int decimal = 0;
  133. for (int i = binaryCode.length() - 1; i >= 0; i--) {
  134. char currentChar = binaryCode.charAt(i);
  135. if (currentChar == '1') {
  136. decimal += Math.pow(2, binaryCode.length() - i - 1);
  137. } else if (currentChar != '0') {
  138. System.out.println("Ungültiger Binärcode! Bitte gebe nur Nullen und Einsen ein.");
  139. return 0;
  140. }
  141. }
  142. return decimal;
  143. }
  144. public static int decimalToBinary(int decimal) {
  145. int binary = 0;
  146. int power = 0;
  147. while (decimal > 0) {
  148. binary += (decimal % 2) * (int) Math.pow(10, power);
  149. decimal /= 2;
  150. power++;
  151. }
  152. return binary;
  153. }
  154. //6
  155. public static void PrimBis100() {
  156. for (int i = 2; i <= 100; i++) {
  157. boolean istPrimZahl = true;
  158. for (int j = 2; j < i; j++) {
  159. if (i % j == 0) {
  160. istPrimZahl = false;
  161. break;
  162. }
  163. }
  164. if (istPrimZahl) {
  165. System.out.print(i + " ");
  166. }
  167. }
  168. }
  169. public static void EasterEgg() {
  170. System.out.println(" _______");
  171. System.out.println(" / \\");
  172. System.out.println(" ( 0 0 )");
  173. System.out.println(" \\ --- /");
  174. System.out.println(" ------");
  175. }
  176. public static void Timer() {
  177. try (Scanner input = new Scanner(System.in)) {
  178. int actualTime = (int) (Math.random() * 10 + 1);
  179. System.out.print("Schätzen Sie die Zeit, die in Sekunden verstreichen wird (1-10): ");
  180. int estimatedTime = input.nextInt();
  181. System.out.println("Tatsächliche Zeit: " + actualTime + " Sekunden");
  182. System.out.println("Geschätzte Zeit: " + estimatedTime + " Sekunden");
  183. int difference = Math.abs(actualTime - estimatedTime);
  184. System.out.println("Differenz: " + difference + " Sekunden");
  185. if (difference == 0) {
  186. System.out.println("Perfekte Schätzung!");
  187. } else if (difference <= 2) {
  188. System.out.println("Sehr gute Schätzung!");
  189. } else if (difference <= 4) {
  190. System.out.println("Gute Schätzung.");
  191. } else {
  192. System.out.println("Schlechte Schätzung.");
  193. }
  194. }
  195. }
  196. }