老师您好,这一句var c,d,f,g,e;是必要的吗?可以省略吗?

来源:5-8 编程练习

妄4

2019-09-14 00:22:35

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>算数运算</title>
</head>
<body>
    <script>
//代码补充
var a = 4,b = 5;
var c,d,f,g,e;
c = a + b;
d = b - a;
f = b/a;
g = a*b;
e = b%a;
document.write(c+"<br>");
document.write(d+"<br>");
document.write(f+"<br>");
document.write(g+"<br>");
document.write(e+"<br>");
</script>
</body>
</html>


写回答

1回答

樱桃小胖子

2019-09-14

http://img.mukewang.com/climg/5d7c94b409a5214007080632.jpg

是可以去掉的

希望可以帮到你!

0

0 学习 · 40143 问题

查看课程