7.21练习5
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7.21练习5相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
</body>
</html>
<script>
a=prompt("请输入a","")
b=prompt("请输入b","")
c=prompt("请输入c","")
a = parseInt(a);
b = parseInt(b);
c = parseInt(c);
d=-b
e=2*a
x=b*b-4*a*c
y=d/e
z=Math.sqrt(x)
f=d+z
g=d-z
h=f/e
i=g/e
if(x<0){
alert("无实根")
}
else{
if(x==0){
alert(y)
}
else{
if(x>0){
alert(h+","+i)
}
}
}
</script>
以上是关于7.21练习5的主要内容,如果未能解决你的问题,请参考以下文章