7.21练习2
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7.21练习2相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
</body>
</html>
<script>
x=prompt("请输入姓名","")
y=prompt("请输入考试成绩“,”")
z="恭喜你"
a=",满分通过!"
b="你很优秀,继续保持!"
c="成绩良好"
d="就差一点点,下次一定要至少及格!"
e="你是笨蛋吗?"
if(y==100){
alert(z+x+a)
}
else if(y>=80&&y<100){
alert(x+b)
}
else if(y>=60&&y<80){
alert(x+c)
}
else if(y>=50&&y<60){
alert(x+d)
}
else if(y<50){
alert(x+e)
}
</script>
以上是关于7.21练习2的主要内容,如果未能解决你的问题,请参考以下文章