Loading ⌛Loading ⌛
Loading ⌛
| Interaktive Schaltung | Wahrheitstabelle | Symbole aus logic.ly online | Programmieren |
|---|---|---|---|
| Loading ⌛ | a | o ------ 0 | 0 1 | 1 | | Wahrheitswerte: true, falseBeispiel: if (mouseIsPressed) { ... } |
| Interaktive Schaltung | Wahrheitstabelle | Symbol aus logic.ly online | Programmieren |
|---|---|---|---|
| Loading ⌛ | a | o ------ 0 | 1 1 | 0 | | Operator: !Beispiel: if (!mouseIsPressed) { ... } |
| Interaktive Schaltung | Wahrheitstabelle | Symbol aus logic.ly online | Programmieren |
|---|---|---|---|
| Loading ⌛ | a | b | o ---------- 0 | 0 | 0 1 | 0 | 0 0 | 1 | 0 1 | 1 | 1 | | Operator: &&Beispiel: if (x>20 && x<80 ) { ... } |
| Interaktive Schaltung | Wahrheitstabelle | Symbol aus logic.ly online | Programmieren |
|---|---|---|---|
| Loading ⌛ | a | b | o ---------- 0 | 0 | 0 1 | 0 | 1 0 | 1 | 1 1 | 1 | 1 | | Operator: ||Beispiel: if (x<20 || x>80) { ... } |
Loading ⌛