|
@ -1,7 +1,26 @@ |
|
|
package digital.technik; |
|
|
package digital.technik; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.Scanner; |
|
|
|
|
|
|
|
|
public class DigitalTechnik5 { |
|
|
public class DigitalTechnik5 { |
|
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
public static void main(String[] args) { |
|
|
|
|
|
Scanner sc = new Scanner(System.in); |
|
|
|
|
|
|
|
|
|
|
|
System.out.println("Willkommen"); |
|
|
|
|
|
System.out.println("Bitte wählen Sie ein Thema (Zahl):"); |
|
|
|
|
|
System.out.println("1. KV-Diagram"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int choice = sc.nextInt(); |
|
|
|
|
|
sc.nextLine(); |
|
|
|
|
|
|
|
|
|
|
|
if (choice == 1) { |
|
|
|
|
|
|
|
|
|
|
|
System.out.println("Ein KV-Diagramm ist ein Diagramm, in dem die Beziehung zwischen zwei oder mehr Variablen dargestellt wird."); |
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
System.out.println("Ungültige Eingabe!"); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |