<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>while循环</title>
</head>
<body>
<script type='text/javascript'>
//while 循环格式 var i=0; while(i<=10){ console.log('hello world' ); i++ }
var scores=parseInt(prompt('请输入考试成绩*'))
while(scores<=60){
console.log('你太弱了,不及格')
console.log('考试了,请输入成绩')
scores=parseInt(prompt('输入二次考试成绩'))
scores++;
}
//先复习所学知识,再进行考试,如果不及格,请写明具体原因
var i=0;
do{
console.log('已经进行了复习所学知识')
scores=parseInt(prompt('请输入考试成绩*'))
}while(i<=60)
</script>
</body>
</html>
网友评论