-
Notifications
You must be signed in to change notification settings - Fork 0
/
hw4script.js
61 lines (52 loc) · 1.13 KB
/
hw4script.js
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
// Exercise 1
// let i = 0;
// while (i < 2) {
// alert("Привет");
// i++;
// }
// Exercise 2
// let i = 1;
// while (i <= 5) {
// alert(i);
// i++;
// }
// Exercise 3
// let i = 7;
// while (i <= 22) {
// alert(i);
// i++;
// }
// Exercise 4
// const obj = {
// Коля: 200,
// Вася: 300,
// Петя: 400,
// };
// for (const salary in obj) {
// alert(salary + " — зарплата " + obj[salary] + " долларов");
// }
// Exercise 5 Можно ли с помощью этого цикла сделать?
// let n = 1000;
// let num = 0;
// do {
// n / 2;
// num++;
// alert(n);
// } while (n < 50);
// alert("Iterated " + num + " times!");
// Exercise 5
// let n = 1000;
// let num = 0;
// for (let n = 1000, num = 0; n <= 50; num++) {
// n / 2;
// alert(num);
// }
// alert("Iterated " + num + " times!");
// Exercise 6
let day = 5;
for (let day = 5; day <= 31; day += 7) {
// почему +=? почему +=7 не в фигурных скобках?
alert(
"Сегодня пятница, " + day + " -е число. Необходимо подготовить отчет.!"
);
}