Browse Source

added 8th indexcard content 1

remotes/origin/A.Morlang/gruppenprojekt
fdai7487 2 years ago
parent
commit
f5da7ca368
  1. 24
      src/digital/technik/DigitalTechnik8.java

24
src/digital/technik/DigitalTechnik8.java

@ -1,8 +1,32 @@
package digital.technik; package digital.technik;
import java.util.Scanner;
public class DigitalTechnik8 { public class DigitalTechnik8 {
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. JK-FlipFlop");
System.out.println("2. T-Flipflop");
System.out.println("3. Taktpegelgesteuertes D-Latch");
System.out.println("4. Taktflankengesteuertes D-Flipflop");
int choice = sc.nextInt();
sc.nextLine();
if (choice == 1) {
System.out.println("""
Ein JK-Flipflop ist eine Art von Flipflop, das auf eine Kombination von Eingangssignalen J und K reagiert. Es hat zwei Eingänge (J und K) und einen Ausgang (Q).\s
Der Ausgang wird auf den Wert von J gesetzt, wenn K auf logisch 0 steht und auf den Wert von K gesetzt, wenn J auf logisch 0 steht.\s
Wenn beide J und K auf logisch 1 stehen, wird der Ausgang invertiert.""");
} else {
System.out.println("Ungültige Eingabe!");
}
} }
} }
Loading…
Cancel
Save