var a= -5;var b=-2;var c=-6; var d=0; var e=-1;
if(a>b && a>c && a>d && a>e)
{
console.log(a);
}
else if(b>a && b>c && b>d && b>e)
{
console.log(b);
}
else if(c>a && c>b && c>d && c>e)
{
console.log(c);
}
else if(d>a && d>c && d>b && d>e)
{
console.log(d);
}
else
{
console.log(e);
}
To embed this program on your website, copy the following code and paste it into your website's HTML: