<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>마무리 문제 2</title>
<style>
body {
font-size:1.2em;
text-align:center;
}
p{
color:#f00;
font-weight:bold;
}
</style>
</head>
<body>
<h1>3의 배수 찾기 </h1>
<script>
var num = parseInt(prompt("몇 까지 3의 배수를 찾을까요?", "100"));
var i;
var count=0;
if(num !== null)
{
for(i=1;i<num;i++)
{
if(i %3 === 0) {
document.write(i+",");
count++;
}
}
document.write("<p>"+num+"까지의 3의 배수의 개수 :"+count+"</p>");
}
else
alert("입력이 취소되었습니다.");
</script>
</body>
</html>
'JavaScript' 카테고리의 다른 글
15장 - var를 사용한 변수의 특징 (0) | 2023.04.06 |
---|---|
15장 -함수의 선언과 호출 (0) | 2023.04.06 |
14장 마무리 문제 1 (0) | 2023.04.06 |
14장 실습 3 (0) | 2023.04.06 |
14장 for 문/ while 문 (0) | 2023.04.06 |