第二次作业--交换两个变量
这个作业属于哪个课程 https://edu.cnblogs.com/campus/sdscfz/SF3/
这个作业要求在哪里 https://edu.cnblogs.com/campus/sdscfz/SF3/homework/12939
这个作业的目标 第二次作业-交换两个变量的值
<head>
    <meta  charset="utf-8">
    <title>交换两个变量
    </title>
</head>
<body>
<script>
    var three = 3 ;
    var four= 4 ;
    var temp = three ;
    three= four;
    four = temp;
    document.write(three);
    document.write(four);
</script>
</body>
</html>

posted on 2023-03-12 13:49  郝小琦  阅读(12)  评论(0编辑  收藏  举报