Browse Source

docs(rockandroll): upgrade instructions

pull/1541/head
Tiago Collot 2 years ago
parent
commit
27ef0d2782
  1. 2
      subjects/rockandroll/README.md

2
subjects/rockandroll/README.md

@ -7,6 +7,8 @@ Write a function called `RockAndRoll()` that takes an `int` and returns a `strin
- If the number is divisible by 2, print `rock` followed by a newline `\n`.
- If the number is divisible by 3, print `roll` followed by a newline `\n`.
- If the number is divisible by 2 and 3, print `rock and roll` followed by a newline `\n`.
- If the number is negative return `error: number is negative` followed by a newline `\n`.
- If the number is non divisible return `error: non divisible` followed by a newline `\n`.
### Expected function

Loading…
Cancel
Save