Javascript-乘以2个数字并返回数字
Posted
技术标签:
【中文标题】Javascript-乘以2个数字并返回数字【英文标题】:Javascript- Multiplying 2 numbers and return number 【发布时间】:2014-12-17 05:51:22 【问题描述】:我通常已经很好地理解了这些东西,因为我正在为一个非专业课程学习网络编程,我猜我只是对我被要求做的事情有点困惑。
我被告知“编写一个名为“MULTIPLY”的函数,它接受 2 个参数。该函数将以这种方式声明:
function MULTIPLY(parameter1, parameter2)
//The parameter names can be whatever you want
//Your code goes here
;
我已经把它写成我的代码了:
function MULTIPLY (price, shipping)
return price*shipping;
enter code here
product=number1*number2;
//return the result
return total;
【问题讨论】:
您的代码末尾缺少
。你也离开了 *** 的enter code here
。请展示你实际写的内容。
【参考方案1】:
<script>
function multiplyNumbers(x,y)
return x*y;
var z= multiplyNumbers(4,5); // Function is called, return value will end up in z
</script>
<button onclick="document.getElementById('multiplication').innerhtml=z;">Multiply numbers</button>
<p id="multiplication"></p>
【讨论】:
【参考方案2】:你有几个问题。这是它的外观
function MULTIPLY(price, shipping)
//Return the sum
return price*shipping;
//Call MULTIPLY to multiply the two numbers
var product=MULTIPLY(number1, number2);
【讨论】:
谢谢 DrRoach。我也很困惑的是 //Some code 部分。这与“返回”功能有关吗? 不,一点也不,这只是您在实际使用MULTIPLY
函数之前想要执行的任何 javascript 代码。 //
表示它是一条注释,实际上从未由代码运行。
感谢您的反馈,所以不会是“//返回结果”?
没问题,注释将是任何可以解释代码的内容。看看编辑
好吧,我仍然不确定我会使用什么以上是关于Javascript-乘以2个数字并返回数字的主要内容,如果未能解决你的问题,请参考以下文章
text 给出数字n的JavaScript递归示例将自身乘以n + 1,直到在后续nu中找到0-9之间的所有数字