-7
嘿傢伙我需要創建一個程序,將顯示用戶輸入的三個數字的總和和乘積。他們給我的代碼,但林不知道我需要進入。總和和數字的乘積Javascript
<html>
<head>
<title>Week 3 - Exercise 3-2</title>
<script type="text/javascript">
var str1, str2, str3; //global variables created
function threeParameters(a,b,c) //function receives 3 parameters
{ str1=a; //assign 1st parameter to str1
str2=b; //assign 2nd parameter to str2
str3=c; //assign 3rd parameter to str3
alert(enter code here); //display the 3 values
alert(enter coder here); //display the 3 values
ver 3 lines
}
</script>
</head>
<body onload = "threeParameters('Hello','out','there1')"> <!--Use the onload event -->
</body>
顯然我需要下一個輸入代碼,它說:「警報」
這是我給出的所有代碼。我不確定是否需要使用一些代碼,並編寫一個完整的程序或只需在警報區域中輸入。 –
但是...函數目前使用三個字符串(單詞)而不是三個數字來調用,而變量名稱str1,str2和str3意味着編寫該模板的人需要字符串而不是數字。你確定你有合適的數字和產品練習的開始模板嗎? – nnnnnn
儘管「模板代碼」你是爲字符串。添加和增加變量是非常基本的。您只需使用'+'加法('a + b + c')和'*'乘法('a * b * c')。 –