Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabepalhares/syntaxes-and-operators
Challenge from the course "Syntaxes and Operators" from the Banco Inter's Bootcamp
https://github.com/gabepalhares/syntaxes-and-operators
Last synced: 21 days ago
JSON representation
Challenge from the course "Syntaxes and Operators" from the Banco Inter's Bootcamp
- Host: GitHub
- URL: https://github.com/gabepalhares/syntaxes-and-operators
- Owner: gabepalhares
- Created: 2022-02-02T23:10:54.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-17T13:34:50.000Z (almost 3 years ago)
- Last Synced: 2024-11-11T09:16:59.665Z (3 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Syntaxes and Operators
Challenge proposed from the course "Syntaxes and Operators" - Banco Inter's Bootcamp-----
### Atividade
- Crie uma função que recebe dois números como parâmetros.
- Confira se os números são iguais.
- Confira se a soma dos números é maior que 10 ou menor que 20.
- Retorne uma string dizendo "Os números `num1` e `num2` não/são iguais. Sua soma é `soma`, que é `maior/menor` que 10 e `maior/menor` que 20".Exemplo:
```
Input: 1, 2
Output: Os números 1 e 2 não são iguais. Sua soma é 3, que é menor que 10 e menor que 20.
```