|
@ -171,36 +171,13 @@ public class ProgrammMain { |
|
|
int number = 5; |
|
|
int number = 5; |
|
|
int result = calculateFactorial(number); |
|
|
int result = calculateFactorial(number); |
|
|
System.out.println(number + "! = " + result); |
|
|
System.out.println(number + "! = " + result); |
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static void schaltjahr() { |
|
|
|
|
|
|
|
|
|
|
|
System.out.println("Welches Jahr möchtest du untersuchen?"); |
|
|
|
|
|
|
|
|
|
|
|
try (Scanner scanner2 = new Scanner(System.in)) { |
|
|
|
|
|
String jahr = scanner2.nextLine(); |
|
|
|
|
|
int jahr1 = Integer.parseInt(jahr); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Bestimmen+Ausgabe |
|
|
|
|
|
|
|
|
|
|
|
if( jahr1 % 400 == 0 ) System.out.println("Schaltjahr!"); |
|
|
|
|
|
else if( jahr1 % 100 == 0 ) System.out.println("Kein Schaltjahr!"); |
|
|
|
|
|
else if( jahr1 % 4 == 0 ) System.out.println("Schaltjahr!"); |
|
|
|
|
|
else System.out.println("Kein Schaltjahr!"); |
|
|
|
|
|
} catch (NumberFormatException e) { |
|
|
|
|
|
// TODO Auto-generated catch block |
|
|
|
|
|
e.printStackTrace(); |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
public static void main(String[] args) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
System.out.println("Willkommen bei diesem kleinen konsolenbasierten Spiel!\n"); |
|
|
System.out.println("Willkommen bei diesem kleinen konsolenbasierten Spiel!\n"); |
|
|
System.out.println("Du hast 3 Spielmodi!\n"); |
|
|
System.out.println("Du hast 3 Spielmodi!\n"); |
|
|
System.out.println("1. Karteikarten\n"); |
|
|
System.out.println("1. Karteikarten\n"); |
|
|