highlight

This commit is contained in:
MSilva95 2022-07-26 15:05:17 +01:00 committed by zainab Dnaya
parent d3e7be78d1
commit 4901cfa9bc
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ Write a function called `BuzZinga()` that takes a number as an argument, then lo
- If the number is divisible by 5, print `Zinga` followed by a newline
- If the number is divisible by 3 and 5, print `BuzZinga` followed by a newline
- If the number is negative or not divisible by 3 or 5, print `*` followed by a newline.
- if the number is 0, print BuzZinga followed by a newline.
- if the number is 0, print `BuzZinga` followed by a newline.
### Expected function