✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Gegeben ist der nachstehende Quelltext. Was wird ausgegeben, wenn dieser Code ausgeführt wird?
int x = 15;int y = 10;
if (x > y) { if (x - y > 5) { Serial.println("x ist viel größer als y"); } else { Serial.println("x ist nur etwas größer als y"); }} else if (x < y) { Serial.println("x ist kleiner als y");} else { Serial.println("x und y sind gleich");}