Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.
```