0
摂氏6度の気温を華氏に変換する必要があります。私は平均気温も計算する必要があります。私は私のソリューションで2つの配列を使用する必要があります。私は本当にここで答えを見つけることにとても近いと思う。私はJavaScriptが初めてです。摂氏を華氏に変換するJavaScript配列
var numIn1 = parseInt(prompt("Please enter temperature for January in Celsius"));
var numIn2 = parseInt(prompt("Please enter temperature for February in Celsius"));
var numIn3 = parseInt(prompt("Please enter temperature for March in Celsius"));
var numIn4 = parseInt(prompt("Please enter temperature for April in Celsius"));
var numIn5 = parseInt(prompt("Please enter temperature for May in Celsius"));
var numIn6 = parseInt(prompt("Please enter temperature for June in Celsius"));
var degree = new Array(numIn1, numIn2, numIn3, numIn4, numIn5, numIn6);
var Average = 0;
var Total = 0;
for(i = 0; i < degree.length; i++) {
Total = Total + degree[i];
}
function convert(degree) {
var i;
if(degree == "C") {
i = document.getElementById("c").value * 9/5 + 32;
document.getElementById("f").value = Math.round(x);
} else {
i = (document.getElementById("f").value - 32) * 5/9;
document.getElementById("c").value = Math.round(x);
}
}
Average = Total/degree.length;
alert(degree[0]);
alert(degree[1]);
alert(degree[2]);
alert(degree[3]);
alert(degree[4]);
alert(degree[5]);
alert(Average);
alert(Math.round(Average));
1)は、このを見てみましょう。 2)あなたが書いたconvert()関数は、以前構築した配列を使用していません。 3)配列とパラメーターの両方を変換関数 "degree"に指定しました。混乱を避けるために、これらの異なる名前を付けることを検討してください。 –