-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
301 lines (262 loc) · 9.24 KB
/
Program.cs
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Тема: Інтерфейси
//Модуль 7
namespace _16._04._24_c_
{
//Task_1
public interface ICalc
{
int Less(int valueToCompare);
int Greater(int valueToCompare);
}
public class Array_1 : ICalc
{
private int[] array;
public Array_1(int size)
{
array = new int[size];
}
public int this[int index]
{
get { return array[index]; }
set { array[index] = value; }
}
public int Greater(int valueToCompare)
{
int greater_nums = 0;
for (int i = 0; i < array.Length; i++)
{
if (array[i] > valueToCompare)
{
greater_nums++;
}
}
return greater_nums;
}
public int Less(int valueToCompare)
{
int lower_nums = 0;
for (int i = 0; i < array.Length; i++)
{
if (array[i] < valueToCompare)
{
lower_nums++;
}
}
return lower_nums;
}
public void Show()
{
Console.Write("array 1:\t\t\t\t");
for (int i = 0; i < array.Length; i++)
{
Console.Write($"{array[i]} ");
}
Console.WriteLine();
}
}
//Task_2
public interface IOutput_2
{
void ShowEven();
void ShowOdd();
}
public class Array_2 : IOutput_2
{
private int[] array;
public Array_2(int size)
{
array = new int[size];
}
public int this[int index]
{
get { return array[index]; }
set { array[index] = value; }
}
public void ShowEven()
{
Console.Write("evens in array:\t\t\t\t");
for (int i = 0; i < array.Length; i++)
{
if (array[i] % 2 == 0)
{
Console.Write($"{array[i]} ");
}
}
Console.WriteLine();
}
public void ShowOdd()
{
Console.Write("odds in array:\t\t\t\t");
for (int i = 0; i < array.Length; i++)
{
if (array[i] % 2 != 0)
{
Console.Write($"{array[i]} ");
}
}
Console.WriteLine();
}
public void Show()
{
Console.Write("array 2:\t\t\t\t");
for (int i = 0; i < array.Length; i++)
{
Console.Write($"{array[i]} ");
}
Console.WriteLine();
}
}
//Task_3
public interface ICalc_2
{
int CountDistinct();
int EqualToValue(int valueToCompare);
}
public class Array_3 : ICalc_2
{
private int[] array;
public Array_3(int size)
{
array = new int[size];
}
public int this[int index]
{
get { return array[index]; }
set { array[index] = value; }
}
public int CountDistinct()
{
int unique_nums = 0;
int index = 0;
for (int i = 0; i < array.Length; i++)
{
bool is_unique = true;
for (int j = 0; j < index; j++)
{
if (array[i] == array[j])
{
is_unique = false;
break;
}
}
if (is_unique)
{
unique_nums++;
array[index] = array[i];
index++;
}
}
return unique_nums;
}
public int EqualToValue(int valueToCompare)
{
int equal_nums = 0;
for (int i = 0; i < array.Length; i++)
{
if (array[i] == valueToCompare)
{
equal_nums++;
}
}
return equal_nums;
}
public void Show()
{
Console.Write("array 3:\t\t\t\t");
for (int i = 0; i < array.Length; i++)
{
Console.Write($"{array[i]} ");
}
Console.WriteLine();
}
}
internal class Program
{
static void Main(string[] args)
{
//Завдання 1
//Створіть інтерфейс ICalc.У ньому мають бути два
//методи:
//■ int Less(int valueToCompare) — повертає кількість
//менших значень, ніж valueToCompare;
//■ int Greater(intvalueToCompare) — повертає кількість
//більших значень, ніж valueToCompare.
//Клас, створений раніше у практичному завданні Array,
//має імплементувати інтерфейс ICalc.
//Метод Less — повертає кількість елементів масиву
//менших, ніж valueToCompare.
//Метод Greater — повертає кількість елементів масиву
//більших, ніж valueToCompare.
//Напишіть код для тестування отриманої функціональності.
Console.WriteLine($"Task 1\n");
Array_1 array1 = new Array_1(5);
array1[0] = 1;
array1[1] = 3;
array1[2] = 5;
array1[3] = 6;
array1[4] = 9;
array1.Show();
Console.Write("enter value to compare (0-9):\t\t");
int user_num = int.Parse(Console.ReadLine());
Console.WriteLine($"number of elements greater then {user_num}:\t{array1.Greater(user_num)}");
Console.WriteLine($"number of elements less then {user_num}:\t\t{array1.Less(user_num)}");
Console.WriteLine("\npress any key to continue");
Console.ReadKey();
Console.WriteLine();
//Завдання 2
//Створіть інтерфейс IOutput2.У ньому мають бути
//два методи:
//■ void ShowEven() — відображає парні значення контейнера з даними;
//■ void ShowOdd() — відображає непарні значення контейнера з даними.
//Клас, створений раніше у практичному завданні Array,
//має імплементувати інтерфейс IOutput2.
//Метод ShowEven — відображає парні значення з
//масиву.
//Метод ShowOdd — відображає непарні значення
//масиву.
//Напишіть код для тестування отриманої функціональності.
Console.WriteLine($"Task 2\n");
Array_2 array2 = new Array_2(5);
array2[0] = 1;
array2[1] = 3;
array2[2] = 5;
array2[3] = 6;
array2[4] = 9;
array2.Show();
array2.ShowEven();
array2.ShowOdd();
Console.WriteLine("\npress any key to continue");
Console.ReadKey();
Console.WriteLine();
//Завдання 3
//Створіть інтерфейс ICalc2.У ньому мають бути два
//методи:
//■ int CountDistinct() — повертає кількість унікальних
//значень у контейнері даних;
//■ int EqualToValue(int valueToCompare) — повертає кількість значень, рівних valueToCompare.
//Клас, створений раніше у практичному завданні Array,
//має імплементувати інтерфейс ICalc2.
//Метод CountDistinct — повертає кількість унікальних
//значень в масив.
//Метод EqualToValue — повертає кількість елементів
//масиву, рівних valueToCompare.
//Напишіть код для тестування отриманої функціональності.
Console.WriteLine($"Task 3\n");
Array_3 array3 = new Array_3(5);
array3[0] = 1;
array3[1] = 3;
array3[2] = 5;
array3[3] = 6;
array3[4] = 9;
array3.Show();
Console.WriteLine($"number of unique elements:\t\t{array3.CountDistinct()}");
Console.WriteLine($"number of elements equal to {user_num}:\t\t{array3.EqualToValue(user_num)}");
Console.WriteLine();
}
}
}