-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBài toán liệt kê _ Eratosthenes.html
77 lines (71 loc) · 1.89 KB
/
Bài toán liệt kê _ Eratosthenes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liệt Kê Số Nguyên Tố</title>
<style>
body {
background-color: #f7d1d7;
font-family: 'Arial', sans-serif;
text-align: center;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
h1 {
color: #050505;
}
p {
font-size: medium;
}
button {
background-color: #f7d1d7;
color: rgb(20, 18, 18);
border: none;
cursor: pointer;
font-size: medium;
}
#ketqua {
margin-top: 20px;
color: #050505;
}
</style>
</head>
<body>
<h1>Bài toán Liệt Kê Các Số Nguyên Tố _ Sàng số nguyên tố</h1>
<p> Liệt kê các số nguyên tố có 2 chữ số</p>
<button type="button" onclick="ketqua()">Đáp án </button>
<p id="ketqua"></p>
<script>
var snt = [];
function sang_snt() {
// Coi tất cả các số từ 2 tới 99 là số nguyên tố, loại luôn số 0,1
for (let i = 2; i <= 99; i++) {
snt[i] = 1;
}
// Thực hiện sàng
for (let i = 2; i <= Math.sqrt(99); i++) {
if (snt[i]) {
for (let j = i * i; j <= 99; j += i) {
snt[j] = 0; //Loại bỏ
}
}
}
}
function ketqua() {
sang_snt();
let so_nt = '';
for (let i = 10; i <= 99; i++) {
if (snt[i]) {
so_nt += i + ' ';
}
}
document.getElementById("ketqua").innerHTML = so_nt;
}
</script>
</body>
</html>