Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Erros no gabarito #20

Open
santanajoao opened this issue Sep 1, 2022 · 0 comments
Open

Erros no gabarito #20

santanajoao opened this issue Sep 1, 2022 · 0 comments

Comments

@santanajoao
Copy link

Primeiramente, no arquivo /Desafios/Operadores Aritiméticos/desafio-operadores-aritmeticos-06.js/ é dito que:
* A fórmula para calcular o IMC é divisão do peso (em kg) pela altura ao quadrado (em metros);

No entanto, no gabarito da questão a fórmula foi dada como a divisão da altura ao quadrado pelo peso. :
let imc = (height * height) / weight;

Além disso, no mesmo arquivo, a estrutura da função construida como base tem um de seus argumentos nomeado como "base" ao invés de "weight", diferente do que é visto no gabarito:

  • Arquivo
function IMC(base, height){
  // Desenvolva seu código nessa função
}
  • Gabarito
function IMC(weight, height) {
  // Resposta
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant