作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试过了,但只能得到 1 到 50 或 1 到 100 个素数。我应该如何正确找出质数。用户问了哪些?
<h1>enter the no.</h1><input type="text" id="limit">
<h1>enter the no.</h1><input type="text" id="limit2">
<button onclick="fun()">Submit</button>
<div id="result"></div>
<script type="text/javascript">
function fun() {
var i = limit;
var j = limit2;
limit = document.getElementById('limit').value;
limit2 = document.getElementById('limit2').value;
for (i = limit; i <= limit2; i++) {
c = 0;
for (j = 1; j <= i; j++) {
if (i % j == 0) {
c++;
}
}
if (c == 2) {
document.getElementById("result").insertAdjacentHTML('beforeend', i + '<br>');
}
}
}
</script>
最佳答案
找出下面的更正
function fun() {
/*var i = limit;*/
/*var j = limit2;*/
var limit = document.getElementById('limit').value;
var limit2 = document.getElementById('limit2').value;
var result = document.getElementById("result");
result.innerHTML = "Result: ";
for (var i = limit; i <= limit2; i++) {
var prime = true;
/* set j = 2 and NOT j = 1 */
for (var j = 2; j < i; j++) {
if (i % j == 0) {
prime = false;
break;
}
}
if (prime) {
result.insertAdjacentHTML('beforeend', i + ','); /* replaced <br/> with , to avoid page scroll */
}
}
}
fun(); /* test pupose only */
h1 {
margin: 0px;
}
<h1>enter the no.</h1><input type="text" id="limit" value="12">
<h1>enter the no.</h1><input type="text" id="limit2" value="55">
<button onclick="fun()">Submit</button>
<div id="result">Result:</div>
关于javascript - 打印从 a 到 b 的素数,a 到 b 是用户使用 javascript 输入的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52138343/
我是一名优秀的程序员,十分优秀!