From a6f5f94e35cf59dd0c60ccb08394ded9949960ca Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 24 Jan 2022 23:13:20 +0300 Subject: [PATCH 1/2] lesson2 --- 1.html | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2.html | 35 +++++++++++++++++++++++++++++++ 3.html | 34 ++++++++++++++++++++++++++++++ 4.html | 54 ++++++++++++++++++++++++++++++++++++++++++++++++ 5.html | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 6.html | 55 +++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 299 insertions(+) create mode 100644 1.html create mode 100644 2.html create mode 100644 3.html create mode 100644 4.html create mode 100644 5.html create mode 100644 6.html diff --git a/1.html b/1.html new file mode 100644 index 0000000..3593ffc --- /dev/null +++ b/1.html @@ -0,0 +1,56 @@ + + + + + Homework + + + + + + \ No newline at end of file diff --git a/2.html b/2.html new file mode 100644 index 0000000..292bf0f --- /dev/null +++ b/2.html @@ -0,0 +1,35 @@ + + + + + Homework + + + + + + \ No newline at end of file diff --git a/3.html b/3.html new file mode 100644 index 0000000..c483a86 --- /dev/null +++ b/3.html @@ -0,0 +1,34 @@ + + + + + Homework + + + + + + \ No newline at end of file diff --git a/4.html b/4.html new file mode 100644 index 0000000..72184db --- /dev/null +++ b/4.html @@ -0,0 +1,54 @@ + + + + + Homework + + + + + + \ No newline at end of file diff --git a/5.html b/5.html new file mode 100644 index 0000000..15ab0a4 --- /dev/null +++ b/5.html @@ -0,0 +1,65 @@ + + + + + Homework + + + + + + \ No newline at end of file diff --git a/6.html b/6.html new file mode 100644 index 0000000..0558722 --- /dev/null +++ b/6.html @@ -0,0 +1,55 @@ + + + + + Homework + + + + + + \ No newline at end of file From b03eb2377100f8352cdfb4b06ed71efe26ae1533 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Tue, 25 Jan 2022 20:22:39 +0300 Subject: [PATCH 2/2] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B7=D0=B0=D0=BC=D0=B5=D1=87=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 3.html | 5 +++-- 4.html | 27 ++++++++++++++++++++++++++- 5.html | 36 ++++++++++++++++++++++++++++++++++-- 3 files changed, 63 insertions(+), 5 deletions(-) diff --git a/3.html b/3.html index c483a86..905b405 100644 --- a/3.html +++ b/3.html @@ -27,8 +27,9 @@ console.log(a - b); } else if (a < 0 && b < 0) { console.log(a * b); - } else console.log(a + b); - + } else if ((a < 0 && b > 0) || (a > 0 && b < 0)) { + console.log(a + b); + } \ No newline at end of file diff --git a/4.html b/4.html index 72184db..b743859 100644 --- a/4.html +++ b/4.html @@ -31,20 +31,45 @@