From 5192206acc9da3d0c7be8d254e5048e55f02a3e7 Mon Sep 17 00:00:00 2001 From: joocek <108343401+joocek@users.noreply.github.com> Date: Wed, 29 Jun 2022 13:25:17 +0200 Subject: [PATCH 1/5] Update 01-tab.cpp --- 02-types/tasks/01-tab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-types/tasks/01-tab.cpp b/02-types/tasks/01-tab.cpp index f5e66cbd..33793b42 100644 --- a/02-types/tasks/01-tab.cpp +++ b/02-types/tasks/01-tab.cpp @@ -5,7 +5,7 @@ constexpr size_t tab_size = 100; int main() { int tab[tab_size]; - for (size_t i = 0; i < tab_size; ++i) { + for (size_t i = 1; i < tab_size; i+2) { tab[i] = i; } From aa561c4be6d79483af7fd211eb03ea038442d5f8 Mon Sep 17 00:00:00 2001 From: joocek <108343401+joocek@users.noreply.github.com> Date: Wed, 29 Jun 2022 13:56:26 +0200 Subject: [PATCH 2/5] Update 01-tab.cpp --- 02-types/tasks/01-tab.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/02-types/tasks/01-tab.cpp b/02-types/tasks/01-tab.cpp index 33793b42..259a3e92 100644 --- a/02-types/tasks/01-tab.cpp +++ b/02-types/tasks/01-tab.cpp @@ -1,4 +1,5 @@ #include +/*test2 constexpr size_t tab_size = 100; From 2fb2c10cbdc0c3e0be2ef38cd254be109c3174da Mon Sep 17 00:00:00 2001 From: joocek <108343401+joocek@users.noreply.github.com> Date: Wed, 29 Jun 2022 13:56:40 +0200 Subject: [PATCH 3/5] Update 01-tab.cpp --- 02-types/tasks/01-tab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-types/tasks/01-tab.cpp b/02-types/tasks/01-tab.cpp index 259a3e92..e3c62d90 100644 --- a/02-types/tasks/01-tab.cpp +++ b/02-types/tasks/01-tab.cpp @@ -1,5 +1,5 @@ #include -/*test2 +/*test2*/ constexpr size_t tab_size = 100; From 4a51a62e07f41613a10c0908a8f4e6aeb62860f3 Mon Sep 17 00:00:00 2001 From: joocek <108343401+joocek@users.noreply.github.com> Date: Wed, 29 Jun 2022 13:58:37 +0200 Subject: [PATCH 4/5] update2 --- 02-types/tasks/01-tab.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/02-types/tasks/01-tab.cpp b/02-types/tasks/01-tab.cpp index e3c62d90..33793b42 100644 --- a/02-types/tasks/01-tab.cpp +++ b/02-types/tasks/01-tab.cpp @@ -1,5 +1,4 @@ #include -/*test2*/ constexpr size_t tab_size = 100; From 4950e4c25f226d2f42356394f68b814dff479c38 Mon Sep 17 00:00:00 2001 From: joocek <108343401+joocek@users.noreply.github.com> Date: Thu, 30 Jun 2022 18:41:45 +0200 Subject: [PATCH 5/5] update-3 --- 02-types/tasks/01-tab.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/02-types/tasks/01-tab.cpp b/02-types/tasks/01-tab.cpp index 33793b42..e8212008 100644 --- a/02-types/tasks/01-tab.cpp +++ b/02-types/tasks/01-tab.cpp @@ -1,6 +1,7 @@ #include constexpr size_t tab_size = 100; +/* test3 */ int main() { int tab[tab_size];