7.21练习4

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7.21练习4相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
    </body>
</html>
<script>
    a=prompt("请输入性别“,”")
    b=prompt("请输入身高“,”")
    c=prompt("请输入体重”,“")
    x="女"
    y="男"
    d=b-113
    e=b-107
    f=b-103
    g=b-97
    if(a==x){
        if(c>=d&&c<=e){
            alert("标准")
        }
        else{
            alert("不标准")
        }
    }
    else if(a==y){
        if(c>=f&&c<=g){
            alert("标准")
        }
        else{
            alert("不标准")
        }
    }
</script>

以上是关于7.21练习4的主要内容,如果未能解决你的问题,请参考以下文章

7.21练习2

7.21练习1

7.21练习5

SICP练习149 练习4.5

SICP练习152 练习4.8

C#练习笔记4:枚举和数组练习