- in/alisson1017
- alisson1017
-
Joined
Apr 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //CÓDIGO ORIGINAL: | |
| let contagem = parseInt(prompt('Digite um número para começar uma nova contagem (pro)regressiva:')); | |
| if (contagem == 0){ | |
| alert(contagem); | |
| contagem = parseInt(prompt('Digite um número para começar uma nova contagem (pro)regressiva:')); | |
| } else if (contagem < 0) { | |
| alert(contagem); | |
| contagem++; | |
| } else if (contagem > 0) { |