遇到 JSFiddle 代码问题



我最近写了一段代码,用于检查一段时间内某些课程作业的温度。 我使用不同的代码位编写了程序,但找不到我遇到的一些问题的问题。

只是想知道是否有人可以看到我遗漏的任何明显错误,并可以帮助正确方向提供一些信息。

链接到 JSFiddle

//Counting the average temperatures in a day
//needs debugged!!!
var temperatures = [];
var total = 0;
function getCity() {
    //get the locale to help with the display
    city = prompt("Enter your city >> ");
}
function getNumDays() {
    number =  prompt("How many days in the study? Enter 1 - 10");
    while ((number < 1) || (number > 10) ||( isNaN(number) === true)) {
    alert ("Invalid input!");
        number = prompt ("Enter again, 1 - 10 >> ");}
    return number;
    }
function getTemps(numDays) {
    total = 0;
    for (i = 0; i < numDays; i++) {
        next = prompt ("Enter the temperature for day " + (i+1));
        next = parseint(next);
        while (isNaN(next)===true) {
            next = 0;
            next = prompt ("Error in input! Try again >>");
            next = parseInt(next);}
        temperatures.push(next);      
    }
    total = total + next;
    return temperatures; 
}
function calcAverage(total, numDays) {
    average = total / numDays;
    return average;
    }
function showStatistics(city, average, numdays) {
    alert ("The average daily temperature for "+ city +  " is " + average.toFixed(2) + " measured over " + numDays + " days." );
}
//main program
city = getCity();
numDays = getNumDays();
temperatures = getTemps(numDays);
Average = calcAverage(total, numDays);
showStatistics(city, average, numDays);
function getCity() {
    //get the locale to help with the display
    city = prompt("Enter your city >> ");
}
//main program
city = getCity();

看起来您缺少返回语句。

此外,total = total + next;线似乎不合适:我认为totaltemperaturestotal,而不是0 + temperatureOfLastDay

最新更新