Lektion 2

This commit is contained in:
2023-09-27 18:25:19 +02:00
parent c00b7c1e38
commit 4c00f4785c
4 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
float abschlussnote = 6;
int programmiererfahrung = 4;
void setup() {
if (abschlussnote < 1.1 || (programmiererfahrung > 4 && abschlussnote < 3.1)) {
println("Eingestellt!");
} else if (abschlussnote < 2.1 || programmiererfahrung > 3) {
println("zum Gespräch einladen");
} else {
println("abgelehnt");
}
}