Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

184
Visualizações
Decide the smallest even number from 2 input , correct it if the input number is not even. Any solution(Javascript/html)?

the code always thinks num1 is the smaller number ,even if it's not + if the second input is odd, but the first is even, then the output is num1 the smaller even instead of "second input is odd, correct it"

+I would also need a "Both numbers are the same, correct it" output

this would be my wrong solution, how could I make it work?

<body>
    <input id="num1">
    <input id="num2">
    <button onclick="myFunction()">Calculate</button>
    <p id="p"></p>
</body>
const p = document.getElementById("p")
function myFunction() {
    var num1, num2;
    num1 = Number(document.getElementById("num1").value);
    num2 = Number(document.getElementById("num2").value);

     if(num1%2==0 >num2%2==0){
        p.innerHTML=num2+" is the smaller even number"
        if(num1%2!=0){
            p.innerHTML=num1+" first input is odd, correct it"
        }
        else {
        p.innerHTML=num2+" second input is odd, correct it"
        }
     }
     else{
        p.innerHTML=num1+" is the smaller even number"
     }


}
about 4 years ago · Juan Pablo Isaza
3 Respostas
Responde à pergunta

0

You are comparing boolean values in this if statement:

if(num1%2==0 >num2%2==0)

Change that to

if(num1 > num2)
about 4 years ago · Juan Pablo Isaza Relatório

0

In your version, you don't address the possibility that both are odd and you are also comparing two booleans.

function myFunction() {
  var num1, num2;
  num1 = Number(document.getElementById("num1").value);
  num2 = Number(document.getElementById("num2").value);
  if(num1%2!==0 && num2%2!==0){
    p2.innerHTML = num1 + 'and' + num2 + 'are odd, correct them';
  }
  else if(num1%2!==0 && num2%2===0){
    p2.innerHTML = num1 + 'is odd, correct it';
  }
  else if(num1%2===0 && num2%2!==0){
    p2.innerHTML = num2 + 'is odd, correct it';
  }
  else{
    if(num1 < num2){
        p2.innerHTML=num1+" is the smaller even number"
    }
    else if(num2 < num1) {
      p2.innerHTML=num2+" is the smaller even number";
    }
    else {
      p2.innerHTML = 'They are the same number, correct one'
    }
  }
}
about 4 years ago · Juan Pablo Isaza Relatório

0

Here is some updated code. I am not sure what your source code looks like so I'm basing it off my own minimum reproducible example.

I figured it would be easier to read if you split it up first by checking if both numbers are even. If they are not, check out which one is not even.

If they are even, you can just print the smaller one. I did it at the beginning for convenience but you can move it into the else statement if that's preferred.

function myFunction() {
    var num11, num2;
    var p = document.getElementsByTagName("P")[0]
    num1 = Number(document.getElementById("num1").value);
    num2 = Number(document.getElementById("num2").value);
    
    var smaller = num1 < num2 ? num1 : num2

     if(num1%2!=0 || num2%2!=0){
        if(num1%2!=0){
            p.innerHTML=num1+" first input is not even, correct it"
        } else {
        p.innerHTML=num2+" second input is not even, correct it"
        }
     }
     else if (num1 === num2){
        p.innerHTML="Both numbers are equal, correct it."
     } else {
        p.innerHTML=smaller+" is the smaller even number"
     }


}
<p></p>

<input id="num1"/>
<input id="num2"/>

<button onclick="myFunction()">Run</button>

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda