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