From 5c448263d6648d02a17aad34364e9086e7fb547d Mon Sep 17 00:00:00 2001 From: TabolinIA Date: Mon, 13 Oct 2025 09:28:09 +0000 Subject: [PATCH 1/2] =?UTF-8?q?1=20=D1=80=D0=B5=D0=B4.=20=D0=98=D0=9A?= =?UTF-8?q?=D0=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TEMA4/test4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TEMA4/test4.md b/TEMA4/test4.md index 747455d..7f29fcb 100644 --- a/TEMA4/test4.md +++ b/TEMA4/test4.md @@ -1,4 +1,4 @@ -# Индивидуальное контрольное задание +# Индивидуальное контрольное задание по Теме 4 Таболин Иван, А-01-23 Вариант 11 ## Задание From 44dedc69832dfd4eae5b1a65278338c54a50580f Mon Sep 17 00:00:00 2001 From: TabolinIA Date: Mon, 13 Oct 2025 09:31:25 +0000 Subject: [PATCH 2/2] =?UTF-8?q?2=20=D1=80=D0=B5=D0=B4.=20=D0=98=D0=9A?= =?UTF-8?q?=D0=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TEMA4/test4.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TEMA4/test4.md b/TEMA4/test4.md index 7f29fcb..b0fa517 100644 --- a/TEMA4/test4.md +++ b/TEMA4/test4.md @@ -7,13 +7,13 @@ ```py import math import random -spis=range(4,53,7);spis;len(spis) -range(4, 53, 7) +spis=list(range(4,53,7));spis;len(spis) +[4, 11, 18, 25, 32, 39, 46] 7 n=random.choice(spis);n -25 +4 log_nat=math.log(n) out='Результат = %f' print(out % log_nat) -Результат = 3.218876 +Результат = 1.386294 ```