<script language="javascript">
var num = prompt("Enter The Number");
if(num<=100 && num>=80)
{
alert("A+");
}
else if(num>=75 && num<80)
{
alert("A");
}
else if(num>=65 && num<75)
{
alert("A-");
}
else if(num>=55 && num<65)
{
alert("B");
}
else if(num>=45 && num<55)
{
alert("C");
}
else if(num>=33 && num<45)
{
alert("D");
}
else {
alert("FAIL");
}
</script></div>
Comments
Post a Comment