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.6 KiB

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,
  6. //da diese sonst zu unüberscihtlich gewesen wär und die main untergegangen wäre
  7. //Hier können weitere Funtionen untergebracht werden!
  8. //1
  9. public static void Karteikarten() {
  10. try (Scanner eingabeKK = new Scanner(System.in)) {
  11. String[][] karteikarten = { { "Was ist die Hauptstadt von Deutschland?", "Berlin" },
  12. { "Welches ist der größtes Planet in unserem Sonnensystem?", "Jupiter" },
  13. { "Wer hat die Mona Lisa gemalt?", "Leonardo da Vinci" },
  14. { "Wer ist der Bundeskanzler von Deutschland?", "Olaf Scholz" },
  15. { "Wer hat den Z1 entworfen?", "Zuse" }, { "W", "Olaf Scholz" },
  16. { "Wer ist der Bundeskanzler von Deutschland?", "Olaf Scholz" },
  17. // Sonstige Fragen können hier eingefügt werden
  18. };
  19. int PunkteZähler = 0;
  20. for (String[] karteikarte : karteikarten) {
  21. System.out.println(karteikarte[0]);
  22. String answer = eingabeKK.nextLine();
  23. if (answer.equalsIgnoreCase(karteikarte[1])) {
  24. System.out.println("Korrekt!");
  25. PunkteZähler++;
  26. } else {
  27. System.out.println("Leider falsch. Die richtige Antwort wäre: " + karteikarte[1]);
  28. }
  29. }
  30. System.out.println("Dein Punktestand ist " + PunkteZähler + " von insgesamt " + karteikarten.length);
  31. }
  32. }
  33. //2
  34. public static void Fakultaet() {
  35. try (Scanner eingabeFK = new Scanner(System.in)) {
  36. String ein = eingabeFK.nextLine();
  37. int zahlFK = Integer.parseInt(ein);
  38. if (zahlFK <= 0) {
  39. System.out.println("1");
  40. }
  41. int ergebnis = 1;
  42. for (int i = 1; i <= zahlFK; i++) {
  43. ergebnis *= i;
  44. }
  45. System.out.println(ergebnis);
  46. } catch (NumberFormatException e) {
  47. e.printStackTrace();
  48. }
  49. }
  50. //3
  51. public static void schaltjahr() {
  52. System.out.println("Welches Jahr möchtest du untersuchen?");
  53. try (Scanner einSJ = new Scanner(System.in)) {
  54. String jahr = einSJ.nextLine();
  55. int schaltjahr = Integer.parseInt(jahr);
  56. if (schaltjahr % 400 == 0)
  57. System.out.println("Schaltjahr!");
  58. else if (schaltjahr % 100 == 0)
  59. System.out.println("Kein Schaltjahr!");
  60. else if (schaltjahr % 4 == 0)
  61. System.out.println("Schaltjahr!");
  62. else
  63. System.out.println("Kein Schaltjahr!");
  64. } catch (NumberFormatException e) {
  65. e.printStackTrace();
  66. }
  67. }
  68. //4
  69. public static void Quizz() {
  70. Random rand = new Random();
  71. try (Scanner einQ = new Scanner(System.in)) {
  72. String[][] fragen = { { "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. //5
  109. public static int calculate(String binaryCode1, String binaryCode2, char operation) {
  110. int decimal1 = binaryToDecimal(binaryCode1);
  111. int decimal2 = binaryToDecimal(binaryCode2);
  112. int result = 0;
  113. switch (operation) {
  114. case '+':
  115. result = decimal1 + decimal2;
  116. break;
  117. case '-':
  118. result = decimal1 - decimal2;
  119. break;
  120. case '*':
  121. result = decimal1 * decimal2;
  122. break;
  123. case '/':
  124. result = decimal1 / decimal2;
  125. break;
  126. default:
  127. System.out.println("Ungültige Operation! Bitte wähle +, -, * oder /.");
  128. return 0;
  129. }
  130. return decimalToBinary(result);
  131. }
  132. //Hilfe
  133. public static int binaryToDecimal(String binaryCode) {
  134. int decimal = 0;
  135. for (int i = binaryCode.length() - 1; i >= 0; i--) {
  136. char currentChar = binaryCode.charAt(i);
  137. if (currentChar == '1') {
  138. decimal += Math.pow(2, binaryCode.length() - i - 1);
  139. } else if (currentChar != '0') {
  140. System.out.println("Ungültiger Binärcode! Bitte gebe nur Nullen und Einsen ein.");
  141. return 0;
  142. }
  143. }
  144. return decimal;
  145. }
  146. //Hilfe
  147. public static int decimalToBinary(int decimal) {
  148. int binary = 0;
  149. int power = 0;
  150. while (decimal > 0) {
  151. binary += (decimal % 2) * (int) Math.pow(10, power);
  152. decimal /= 2;
  153. power++;
  154. }
  155. return binary;
  156. }
  157. //6
  158. public static void PrimBis100() {
  159. for (int i = 2; i <= 100; i++) {
  160. boolean istPrimZahl = true;
  161. for (int j = 2; j < i; j++) {
  162. if (i % j == 0) {
  163. istPrimZahl = false;
  164. break;
  165. }
  166. }
  167. if (istPrimZahl) {
  168. System.out.print(i + " ");
  169. }
  170. }
  171. }
  172. //7
  173. public static void EasterEgg() {
  174. System.out.println(" _______");
  175. System.out.println(" / \\");
  176. System.out.println(" ( 0 0 )");
  177. System.out.println(" \\ --- /");
  178. System.out.println(" ------");
  179. }
  180. //8
  181. public static void Timer() {
  182. try (Scanner input = new Scanner(System.in)) {
  183. int actualTime = (int) (Math.random() * 10 + 1);
  184. System.out.print("Schätzen Sie die Zeit, die in Sekunden verstreichen wird (1-10): ");
  185. int estimatedTime = input.nextInt();
  186. System.out.println("Tatsächliche Zeit: " + actualTime + " Sekunden");
  187. System.out.println("Geschätzte Zeit: " + estimatedTime + " Sekunden");
  188. int difference = Math.abs(actualTime - estimatedTime);
  189. System.out.println("Differenz: " + difference + " Sekunden");
  190. if (difference == 0) {
  191. System.out.println("Perfekte Schätzung!");
  192. } else if (difference <= 2) {
  193. System.out.println("Sehr gute Schätzung!");
  194. } else if (difference <= 4) {
  195. System.out.println("Gute Schätzung.");
  196. } else {
  197. System.out.println("Schlechte Schätzung.");
  198. }
  199. }
  200. }
  201. // Test, wenn Sie das lesen, sind Sie toll!
  202. }