Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 114 Bytes

File metadata and controls

12 lines (8 loc) · 114 Bytes

Erste Variante:

if (!(age >= 14 && age <= 90))

Zweite Variante:

if (age < 14 || age > 90)