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.

229 lines
6.5 KiB

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,
  6. //da diese sonst zu unüberscihtlich gewesen wär und die main untergegangen wäre
  7. //1
  8. public static void Karteikarten() {
  9. try (Scanner eingabeKK = new Scanner(System.in)) {
  10. String[][] karteikarten = { { "Was ist die Hauptstadt von Deutschland?", "Berlin" },
  11. { "Welches ist der größtes Planet in unserem Sonnensystem?", "Jupiter" },
  12. { "Wer hat die Mona Lisa gemalt?", "Leonardo da Vinci" },
  13. { "Wer ist der Bundeskanzler von Deutschland?", "Olaf Scholz" },
  14. { "Wer hat den Z1 entworfen?", "Zuse" }, { "W", "Olaf Scholz" },
  15. { "Wer ist der Bundeskanzler von Deutschland?", "Olaf Scholz" },
  16. // Sonstige Fragen können hier eingefügt werden
  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 = { { "Welche Farbe hat ein Bananen?", "A) Gelb", "B) Grün", "C) Blau", "D) Rot", "A" },
  72. { "Wie viele Beine hat eine Spinne?", "A) 4", "B) 6", "C) 8", "D) 10", "C" },
  73. { "Wer hat die Formel E=mc² entwickelt?", "A) Isaac Newton", "B) Albert Einstein",
  74. "C) Galileo Galilei", "D) Stephen Hawking", "B" },
  75. { "Welches ist der größte Planet im Sonnensystem?", "A) Merkur", "B) Venus", "C) Erde",
  76. "D) Jupiter", "D" }
  77. // Sonstige Fragen
  78. };
  79. int questionIndex = rand.nextInt(fragen.length);
  80. String[] currentQuestion = fragen[questionIndex];
  81. System.out.println(currentQuestion[0]);
  82. System.out.println(currentQuestion[1]);
  83. System.out.println(currentQuestion[2]);
  84. System.out.println(currentQuestion[3]);
  85. System.out.println(currentQuestion[4]);
  86. String antwort = einQ.nextLine();
  87. if (antwort.equalsIgnoreCase(currentQuestion[5])) {
  88. System.out.println("Richtig!");
  89. } else {
  90. System.out.println("Falsch!");
  91. }
  92. }
  93. }
  94. //5
  95. public static void Binaerrechner() {
  96. try (Scanner scannerBR = new Scanner(System.in)) {
  97. System.out.print("Gebe den ersten Binärcode ein: ");
  98. String binaerCode1 = scannerBR.nextLine();
  99. System.out.print("Gebe den zweiten Binärcode ein: ");
  100. String binaerCode2 = scannerBR.nextLine();
  101. System.out.print("Gebe die gewünschte Operation ein (+, -, *, /): ");
  102. char operation = scannerBR.next().charAt(0);
  103. int ergebnisBR = calculate(binaerCode1, binaerCode2, operation);
  104. System.out.println("Das Ergebnis ist: " + ergebnisBR);
  105. }
  106. }
  107. //5
  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. //Hilfe
  132. public static int binaryToDecimal(String binaryCode) {
  133. int decimal = 0;
  134. for (int i = binaryCode.length() - 1; i >= 0; i--) {
  135. char currentChar = binaryCode.charAt(i);
  136. if (currentChar == '1') {
  137. decimal += Math.pow(2, binaryCode.length() - i - 1);
  138. } else if (currentChar != '0') {
  139. System.out.println("Ungültiger Binärcode! Bitte gebe nur Nullen und Einsen ein.");
  140. return 0;
  141. }
  142. }
  143. return decimal;
  144. }
  145. //Hilfe
  146. public static int decimalToBinary(int decimal) {
  147. int binary = 0;
  148. int power = 0;
  149. while (decimal > 0) {
  150. binary += (decimal % 2) * (int) Math.pow(10, power);
  151. decimal /= 2;
  152. power++;
  153. }
  154. return binary;
  155. }
  156. //6
  157. public static void PrimBis100() {
  158. for (int i = 2; i <= 100; i++) {
  159. boolean istPrimZahl = true;
  160. for (int j = 2; j < i; j++) {
  161. if (i % j == 0) {
  162. istPrimZahl = false;
  163. break;
  164. }
  165. }
  166. if (istPrimZahl) {
  167. System.out.print(i + " ");
  168. }
  169. }
  170. }
  171. //7
  172. public static void EasterEgg() {
  173. System.out.println(" _______");
  174. System.out.println(" / \\");
  175. System.out.println(" ( 0 0 )");
  176. System.out.println(" \\ --- /");
  177. System.out.println(" ------");
  178. }
  179. //8
  180. public static void Timer() {
  181. try (Scanner input = new Scanner(System.in)) {
  182. int actualTime = (int) (Math.random() * 10 + 1);
  183. System.out.print("Schätzen Sie die Zeit, die in Sekunden verstreichen wird (1-10): ");
  184. int estimatedTime = input.nextInt();
  185. System.out.println("Tatsächliche Zeit: " + actualTime + " Sekunden");
  186. System.out.println("Geschätzte Zeit: " + estimatedTime + " Sekunden");
  187. int difference = Math.abs(actualTime - estimatedTime);
  188. System.out.println("Differenz: " + difference + " Sekunden");
  189. if (difference == 0) {
  190. System.out.println("Perfekte Schätzung!");
  191. } else if (difference <= 2) {
  192. System.out.println("Sehr gute Schätzung!");
  193. } else if (difference <= 4) {
  194. System.out.println("Gute Schätzung.");
  195. } else {
  196. System.out.println("Schlechte Schätzung.");
  197. }
  198. }
  199. }
  200. // Test, wenn Sie das lesen, sind Sie toll!
  201. }