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.

198 lines
5.2 KiB

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 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. //2
  30. public static void Fakultaet() {
  31. try (Scanner scanner3 = new Scanner(System.in)) {
  32. String numbera = scanner3.nextLine();
  33. int number = Integer.parseInt(numbera);
  34. if (number <= 0) {
  35. System.out.println("1");
  36. }
  37. int result = 1;
  38. for (int i = 1; i <= number; i++) {
  39. result *= i;
  40. }
  41. System.out.println(result);
  42. } catch (NumberFormatException e) {
  43. // TODO Auto-generated catch block
  44. e.printStackTrace();
  45. }
  46. }
  47. //3
  48. public static void schaltjahr() {
  49. System.out.println("Welches Jahr möchtest du untersuchen?");
  50. try (Scanner scanner2 = new Scanner(System.in)) {
  51. String jahr = scanner2.nextLine();
  52. int jahr1 = Integer.parseInt(jahr);
  53. if (jahr1 % 400 == 0)
  54. System.out.println("Schaltjahr!");
  55. else if (jahr1 % 100 == 0)
  56. System.out.println("Kein Schaltjahr!");
  57. else if (jahr1 % 4 == 0)
  58. System.out.println("Schaltjahr!");
  59. else
  60. System.out.println("Kein Schaltjahr!");
  61. } catch (NumberFormatException e) {
  62. // TODO Auto-generated catch block
  63. e.printStackTrace();
  64. }
  65. }
  66. //4
  67. public static void Quizz() {
  68. Random rand = new Random();
  69. try (Scanner scanner = new Scanner(System.in)) {
  70. String[][] questions = {
  71. { "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(questions.length);
  80. String[] currentQuestion = questions[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 answer = scanner.nextLine();
  87. if (answer.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 scanner = new Scanner(System.in)) {
  97. System.out.print("Gebe den ersten Binärcode ein: ");
  98. String binaryCode1 = scanner.nextLine();
  99. System.out.print("Gebe den zweiten Binärcode ein: ");
  100. String binaryCode2 = scanner.nextLine();
  101. System.out.print("Gebe die gewünschte Operation ein (+, -, *, /): ");
  102. char operation = scanner.next().charAt(0);
  103. int result = calculate(binaryCode1, binaryCode2, operation);
  104. System.out.println("Das Ergebnis ist: " + result);
  105. }
  106. }
  107. public static int calculate(String binaryCode1, String binaryCode2, char operation) {
  108. int decimal1 = binaryToDecimal(binaryCode1);
  109. int decimal2 = binaryToDecimal(binaryCode2);
  110. int result = 0;
  111. switch (operation) {
  112. case '+':
  113. result = decimal1 + decimal2;
  114. break;
  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. default:
  125. System.out.println("Ungültige Operation! Bitte wähle +, -, * oder /.");
  126. return 0;
  127. }
  128. return decimalToBinary(result);
  129. }
  130. public static int binaryToDecimal(String binaryCode) {
  131. int decimal = 0;
  132. for (int i = binaryCode.length() - 1; i >= 0; i--) {
  133. char currentChar = binaryCode.charAt(i);
  134. if (currentChar == '1') {
  135. decimal += Math.pow(2, binaryCode.length() - i - 1);
  136. } else if (currentChar != '0') {
  137. System.out.println("Ungültiger Binärcode! Bitte gebe nur Nullen und Einsen ein.");
  138. return 0;
  139. }
  140. }
  141. return decimal;
  142. }
  143. public static int decimalToBinary(int decimal) {
  144. int binary = 0;
  145. int power = 0;
  146. while (decimal > 0) {
  147. binary += (decimal % 2) * (int) Math.pow(10, power);
  148. decimal /= 2;
  149. power++;
  150. }
  151. return binary;
  152. }
  153. //6
  154. public static void PrimBis100() {
  155. for (int i = 2; i <= 100; i++) {
  156. boolean isPrime = true;
  157. for (int j = 2; j < i; j++) {
  158. if (i % j == 0) {
  159. isPrime = false;
  160. break;
  161. }
  162. }
  163. if (isPrime) {
  164. System.out.print(i + " ");
  165. }
  166. }
  167. }
  168. }