Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ajitonelsonn authored Apr 4, 2024
1 parent 5b41905 commit f923e50
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions operasaun logika no boolean/exerciciu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ between_limits = num >= 5 and num <= 10
print("Númeru entre 5 no 10:", between_limits)
```

2. **Exercísiu 2**: Verifika se uma iha tinan legal ba halo atividade desportu (tinan legal mak 18 ka tinan ki'ik liu).
2. **Exercísiu 2**: Verifika se ema iha tinan legal ba halo atividade jogu kasino (tinan legal mak 18 ka tinan bo'ot liu 18).

```python
idade = int(input("Foti ita nia idade: "))

# Verifika se idade legal atu halo atividade desportu
# Verifika se idade legal atu halo atividade jogu kasino
pode_halodeporte = idade >= 18

print("Ita bele halo atividade desportu:", pode_halodeporte)
Expand All @@ -35,14 +35,14 @@ tem_permissoes = permissaun == "admin"
print("Ita iha permissaun administrador:", tem_permissoes)
```

4. **Exercísiu 4**: Verifika se cliente bele hola deskontu espesiál iha loja (terdaftar no cliente lojal).
4. **Exercísiu 4**: Verifika se cliente bele hola deskontu espesiál iha loja (terdaftar no cliente loyal).

```python
terdaftar = True
cliente_lojal = True
cliente_loyal = True

# Verifika se cliente bele hola deskontu espesiál
bele_deskontu = terdaftar and cliente_lojal
bele_deskontu = terdaftar and cliente_loyal

print("Cliente bele hola deskontu espesiál:", bele_deskontu)
```

0 comments on commit f923e50

Please sign in to comment.