12-4. JS ์ฐ์ต๋ฌธ์ 1,2
2021. 10. 18. 19:06ใHTML + CSS + JS
728x90
* ์ฐ์ต๋ฌธ์ 1
HTML
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>์ฐ์ต๋ฌธ์ 1</title>
<style>
body {
text-align: center;
font-size:1.2em;
}
</style>
</head>
<body>
<h2>4์ ๋ฐฐ์์ผ๊น ์๋๊น</h2>
<script>
var num = prompt("์ซ์๋ฅผ ์
๋ ฅํ์ธ์");
if(num !== null) {
if(num % 4 === 0 ) {
document.write(num + "๋ 4์ ๋ฐฐ์์
๋๋ค.");
}
}else {
document.write("์
๋ ฅ ์ทจ์");
}
</script>
</body>
</html>
* ์ฐ์ต๋ฌธ์ 2
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<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: red;
font-weight: bold;
}
</style>
</head>
<body>
<h2>3์ ๋ฐฐ์ ์ฐพ๊ธฐ</h2>
<script>
var num = prompt("๋ช ๊น์ง 3์ ๋ฐฐ์๋ฅผ ์ฐพ์๊น์? ");
var i;
var count = 0;
if(num !== null) {
for(i = 1; i<= num; i++) {
if(i % 3 === 0) {
count++;
document.write(i + ", ");
}
}
}else {
document.write("์
๋ ฅ์ทจ์");
}
document.write("<p> " + num + "๊น์ง 3์ ๋ฐฐ์์ ๊ฐฏ์ : " + count);
</script>
</body>
</html>
728x90
'HTML + CSS + JS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
13-2. JS ํจ์ (let, const, ์ฌ์ฌ์ฉ ๊ฐ๋ฅํ ํจ์) (0) | 2021.10.19 |
---|---|
13-1. JS ํจ์ (์ง์ญ๋ณ์, ์ ์ญ๋ณ์, ํธ์ด์คํ , ์ฌ์ ์ธ, ์ฌํ ๋น) (0) | 2021.10.19 |
12-3. JS ๋ฐ๋ณต๋ฌธ ( for, ์ค์ฒฉ for๋ฌธ, while, do while ) (0) | 2021.10.18 |
12-2. JS ์กฐ๊ฑด๋ฌธ ( if-else, switch) (0) | 2021.10.18 |
12-1. JS ๊ธฐ๋ณธ ๋ฌธ๋ฒ (๋ณ์, ์๋ฃํ, ์ฐ์ฐ์) (0) | 2021.10.18 |