javascript 学生成绩生成器

jjjwad0x  于 2023-06-20  发布在  Java
关注(0)|答案(1)|浏览(135)

写一个程序,把一辆汽车的速度作为输入,例如80。如果速度小于70,则应打印“OK”。否则,每超过限速(70)5 km/s,应给予驾驶员一个扣分,并打印扣分总数。
例如,如果速度为80,则应打印:“积分:2”。如果驾驶员获得的分数超过12分,则函数应打印:“执照被吊销”

iq3niunx

iq3niunx1#

我有一些基本的结构来回答你的问题:

function getSpeed() {
    var speed = prompt("Speed: ");
    checkSpeed(speed);
}

function checkSpeed(speed) {
    var points = speed;
    points -= 70;
    points /= 5;
    if (speed <= 70) {
      alert("Ok");
    }
    else if (points >= 12) {
      alert("License suspended");
    }
    else {
      alert(points + " Points");
    }
}
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
  <input type="button" value="mystery button" onclick="getSpeed();"/>
</body>
</html>

希望这有帮助!

相关问题