简体   繁体   中英

Run multiple else if statements

When I run this code, only the INVALID (over 100) and High Distinction works. Any number below 80 also shows High Distinction. What have I done wrong?

function calculateGrade() {
    var fvalue = Number(prompt('Please enter final score for unit. Enter a whole    number only'));

    document.write('The final score entered is ' + fvalue + '<br />');

    if (fvalue > 100) {
        document.write('INVALID');
    } else if (80 <= fvalue <= 100) {
        document.write('High Distinction');
    } else if (70 <= fvalue <= 79) {
        document.write('Distinction');
    } else if (60 <= fvalue <= 69) {
        document.write('Credit');
    } else if (50 <= fvalue <= 59) {
        document.write('Pass');
    } else if (0 <= fvalue <= 49) {
        document.write('Fail');
    } else if (fvalue < 0) {
        document.write('INVALID');
    }

}

calculateGrade()

Your comparison syntax is invalid. You need to check one boundary at a time:

if (80 <= fvalue && fvalue <= 100) {

Same for the others.

To take it a step further, you only need to check one boundary, because the higher end is excluded by the else :

if (fvalue > 100) {
    document.write('INVALID');
} else if (80 <= fvalue) {
    document.write('High Distinction');
} else if (70 <= fvalue) {
// ...

This isn't java. But you can surely try this.

else if ( (fvalue >= 80) && (fvalue<= 100)) { document.write('High Distinction');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM