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; } Was this page helpful? Thanks for your feedback! Thanks for your feedback!