while练习
1、假如投资的年利率为5%,试求从1000块增长到5000块,需要花费多少年
1000 1000+1000*0.05=1000*1.05
1050 1050+1050*0.05=1050*1.05
var money =1000;
var count =0;
while(money <=5000){
money *=1.05;
count++;
}
console.log(count);
2、用while循环重写小明的成绩,如果用户输入不合法就反复输入,直到正确为止
while (true){
var score =prompt('请输入小明的成绩');
if (!+score || (+score*10%5 !=0) || +score>100 || +score<0){
alert('非法输入');
}else{
break;
}
}