通过用户的提示查找数字的因子

时间:2014-10-24 16:58:10

标签: javascript html

我一直在努力解决这个挂起浏览器的输出问题。当我运行以下代码时,它运行正常。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
<script type="text/javascript">
var input = 5;
for(var i=1;i< 5;i++){
input = i*input;
}
document.write(input);
</script>
</body>
</html>

但这会挂起浏览器,我不得不最后停止它。我在这段代码中找不到任何错误或错误。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title> 
</head>
<body>
<script type="text/javascript">
    var input = prompt("Enter the number to get factorial of: ");
    var result = input;
    for(var i=1;i < input;i++){
       result = i * result;
    }
    document.write(result);
   </script>
</body>
</html>

3 个答案:

答案 0 :(得分:3)

input = i*input;增加input,因此i < input始终为false。试试smth就像

var input = parseInt(prompt("Enter the number to get factorial of: "));
var result = input;
for(var i=1;i < input;i++){
  result = i * result;
}
document.write(result);

答案 1 :(得分:0)

<html>
 <head>
  <title> New Document </title>
  <script type="text/javascript">
 function fact(num)
 {
    var x=parseInt(num);
    if(x>0)
        x=x* fact(x-1);
    alert(x);
 }</script>
 </head>
 <body>
 <form name="f1">
  Enter the Number  :<input type="text" length="8" name="txt1"><br>
  <input type="button" value="Find factiorial" onclick="fact(txt1.value)">
  </form>
 </body>

答案 2 :(得分:-1)

 var y = prompt("type number ");
var x = input;

 function fact(x) {
   if(x==0) {
      return 1;
   }
   return x * fact(x-1);
}

function run(number) {
    alert(fact(parseInt(number, 10)));
}
run(x);