-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuest.info
More file actions
98 lines (86 loc) · 3.63 KB
/
Quest.info
File metadata and controls
98 lines (86 loc) · 3.63 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>JavaRush</title>
<style>
mark {
padding: .1em .3em;
color: #fff;
text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
font-size: 1em;
font-family: Menlo, Monaco, Consolas, Courier New, Ubuntu Mono, monospace;
border-radius: 3px;
}
.light-content {
font-size: 15px;
line-height: 1.62;
overflow-wrap: break-word;
font-family: Arial, Helvetica, sans-serif;
color: #151f33;
}
.dark-content {
font-size: 15px;
line-height: 1.62;
overflow-wrap: break-word;
font-family: Arial, Helvetica, sans-serif;
color: #fff;
background: #1F2023;
}
.light-content .text-corporate {
color: #f80 !important;
}
.dark-content .text-corporate {
color: #ff7337 !important;
}
.light-content mark.green {
background-color: #41a444;
}
.dark-content mark.green {
background-color: #45aa4c;
}
.light-content mark.orange {
background-color: #faa033;
}
.dark-content mark.orange {
background-color: #ff7337;
}
.light-content mark.blue {
background-color: #3a5fa5;
}
.dark-content mark.blue {
background-color: #4798cf;
}
.light-content .text-red {
color: red !important;
}
.dark-content .text-red {
color: #f14f4c !important;
}
</style>
</head>
<body class="dark-content">
<div style="padding: 10px 30px">
<h3>Синтаксис Java</h3>
<p><strong>Квест «Java Syntax»</strong> разработан в секретном центре <strong>Java<span
class="text-corporate">Rush</span></strong>. Он состоит из <strong>10 уровней</strong>, посвященных основам
языка <strong>Java</strong>.
Его освоит даже тот, кто никогда не программировал. Вы узнаете, что такое <strong><span class="text-corporate">классы</span></strong>,
<mark class="green">объекты</mark>
,
<mark class="orange">методы</mark>
и
<mark class="blue">переменные</mark>
.
Изучите основные типы данных, <span class="text-red">массивы</span>, условные <span
class="text-red">операторы</span> и <span class="text-red">циклы</span>. Глянете одним глазком на
<strong>коллекции</strong> и <strong>основы ООП</strong>
(<em>серьезное их изучение начнется в</em> <strong>Квесте 4</strong>), а также начнете работать в <em><strong>IntelliJ
IDEA</strong></em> — популярной среде разработки (<em>ею пользуются программисты во всем мире!</em>).
</p>
<p>Но главное, вы решите очень много задач. Задачи занимают в <strong>Java<span
class="text-corporate">Rush</span></strong> центральное место. А виртуальные наставники помогут вам
справиться с ошибками (<em>проверка решения происходит мгновенно</em>).</p>
</div>
</body>
</html>