Instrukcja warunkowa¶ Instrukcja prosta¶ if (warunek) { operacje; } Instrukcja pełna¶ if (warunek) { operacje; } else { operacje; } Instrukcja złożona¶ if (warunek) { operacje; } else if (warunek) { operacje; } else { operacje; }