Respuesta :

Answer:

Great question!

I would try something like this:

//Defines your three numbers

int Num1 = 5;

int Num2 = 10;

int Num3 =  50;

if (Num3 > Num2)

{

If(Num3 > Num1)

{

System.out.println("The Highest was:"  + Num3);

}

else

System.out.println("The other number is higher");

You can do else if I just don't want to.

Explanation:

Hope this helped!