摘要:
<script> var score = Number(prompt('请输入一百内数字')); if (score <= 100 && score >= 90) { alert('优'); } else if (score < 90 && score >= 80) { alert('良'); } 阅读全文
摘要:
js代码: <script> // var num1 = 32, // num2 = 43, // num3 = 98; // if (num1 > num2) { // if (num1 > num3) { // alert(num1); // } else { // alert(num3); / 阅读全文