"> Insert title here "> Insert title here ">

스크린샷 2025-04-27 222816.png

스크린샷 2025-04-27 222842.png

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
	.blue { color : blue; }
	.red { color : red; }
</style>
</head>
<body>

<script type="text/javascript">
	function test(msg){
		while(true){
			var score = Number(prompt(msg));
			if(0<=score && score<=100){
				return score;
			}
			else{
				alert("0~100으로 다시 입력해주세요!");
			}
		}
	}

	var score01 = test("중간고사 점수입력");
	var score02 = test("기말고사 점수입력");
	
	var avg = (score01+score02)/2;
	if (avg >= 60) {
		 document.write('<h1 class="blue">통과!</h1>');
	}
	else {
		 document.write('<h1 class="red">실패...</h1>');
	}
</script>

</body>
</html>