int main()
{
float score
while(1)
{
printf("请输入一个成绩:\n")
scanf("%f",&score)
if(score<0||score>100)
printf("成绩输入错误!\n")
else if(score>=0&&score<60)
printf("成绩等级为E\n")
else if(score>=60&&score<70)
printf("成绩等级为D\n")
else if(score>=70&&score<80)
printf("成绩等级为C\n")
else if(score>=80&&score<90)
printf("成绩等级为B\n")
else if(score>=90&&score<=100)
printf("成绩等级为A\n")
}
return 0
}
<html><head><script>
function prompt(){
var cjObj = document.getElementById("cj")
var xsObj = document.getElementById("xs")
xsObj.value=""
var cj = cjObj.value
if(cj.length==0 || isNaN(cj) || cj>100 || cj<0){
alert("输入的成绩错误,请重新输入!")
cjObj.select()
return false
}
var result
if(cj<60)
result="不合格"
else if(cj<70)
result="合格"
else if(cj<80)
result="中等"
else if(cj<90)
result="良好"
else if(cj<100)
result="优秀"
else
result="满分"
xsObj.value=result
return true
}
</script>
</head>
<body>
成绩录入: <input type="text" id="cj"/><br/>
成绩显示: <input type="text" id="xs"/><br/>
<input type="submit" value="提交" onclick="prompt()"/>
</body>
经测试无误,满意请采纳。
¼½¾其他分数系统字体库不支持,如果一定要的话只能用style来定位了,比如说
<div>
<font size=2 style='position:absolute'>
4
</font>
<font size=2 style='position:absoluteleft:20pxtop:26px'>
11
</font>
<font size=5 style='position:absoluteleft:12pxtop:15px'>
/
</font>
</div>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)