1.分支
‘use strict‘ var score=parseFloat(prompt(‘input your score: ‘)) if (score>=90) //一行语句可以省略写{}. alert(‘A‘) else if (score>=80 ) //判断条件只有一个,多个用&& ,|| 不是and /or alert(‘B‘) else if (score>=70) alert(‘C‘) else if (score>=60) alert(‘D‘) else { alert(‘F‘); alert(‘you are in danger.‘) }
2.循环
for
‘use strict‘ var sum=0; for(var i=0;i<101;i++){ sum+=i; } alert(sum)
for in
时间: 2024-10-11 21:14:28