写一个HTML,其中用JavaScript编写两个函数,分别使用for循环和while循环语句实现1——1000的偶数累加,当累加和大于2000时,终止循环语句的执行。函数名自行定义,累加结果以弹窗的形式展现。
时间: 2024-02-18 18:03:00 浏览: 49
好的,以下是符合要求的HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>偶数累加</title>
</head>
<body>
<button onclick="sumWithFor()">使用for循环累加偶数</button>
<button onclick="sumWithWhile()">使用while循环累加偶数</button>
<script>
function sumWithFor() {
let sum = 0;
for (let i = 2; i <= 1000; i += 2) {
sum += i;
if (sum > 2000) break;
}
alert("使用for循环累加偶数,累加结果为:" + sum);
}
function sumWithWhile() {
let sum = 0;
let i = 2;
while (i <= 1000 && sum <= 2000) {
sum += i;
i += 2;
}
alert("使用while循环累加偶数,累加结果为:" + sum);
}
</script>
</body>
</html>
```
这段代码中,定义了两个按钮,分别绑定了两个函数 `sumWithFor()` 和 `sumWithWhile()`。这两个函数分别使用了for循环和while循环语句实现了1——1000的偶数累加,并且在累加和大于2000时,终止循环语句的执行。最后,累加结果以弹窗的形式展现。
阅读全文