1. 程式人生 > >js運算

js運算

title doc else alert ctype rom doctype 今天 題目

今天把五個題目都做出來了,雖然可能用的方法比較麻煩。不過總體來說不錯:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
</html>
<script>
x=prompt("請輸入x","")
y=prompt("請輸入y","")
z=prompt("請輸入z","")
if(x>y&&x>z){
if(y>z){
alert(x+y+z+"")
}
else{
alert(x+z+y+"")
}
}
else{
if(y>x&&y>z){
if(x>z){
alert(y+x+z+"")
}
else{
alert(y+z+x+"")
}
}
else{
if(z>x&&z>y){
if(x>y){
alert(z+x+y+"")
}
else{
alert(z+y+x+"")
}
}
}
}
</script>

js運算