-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
180 lines (152 loc) · 5.68 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Тема: Структури, перелік
//Модуль 8
namespace _18._04._24_c_
{
//Task_1
struct ThreeDimVector
{
public double X;
public double Y;
public double Z;
public ThreeDimVector(double x, double y, double z)
{
X = x;
Y = y;
Z = z;
}
public void MultByNum(ThreeDimVector vector1, double num)
{
X = vector1.X * num;
Y = vector1.Y * num;
Z = vector1.Z * num;
}
public void SumOfVectors(ThreeDimVector vector1, ThreeDimVector vector2)
{
X = vector1.X + vector2.X;
Y = vector1.Y + vector2.Y;
Z = vector1.Z + vector2.Z;
}
public void SubOfVectors(ThreeDimVector vector1, ThreeDimVector vector2)
{
X = vector1.X - vector2.X;
Y = vector1.Y - vector2.Y;
Z = vector1.Z - vector2.Z;
}
public override string ToString()
{
return $"({X}, {Y}, {Z})";
}
}
//Task_2
struct DecimalNumber
{
private int _value;
public DecimalNumber(int value)
{
this._value = value;
}
public int Value { get { return _value; } set { _value = value; } }
public string ToBinary()
{
return Convert.ToString(_value, 2);
}
public string ToOctal()
{
return Convert.ToString(_value, 8);
}
public string ToHexadecimal()
{
return Convert.ToString(_value, 16);
}
}
//Task_3
struct RGB
{
private int _red;
private int _green;
private int _blue;
public RGB(int red, int green, int blue)
{
this._red = red;
this._green = green;
this._blue = blue;
}
public int Red { get { return _red; } set { _red = value; } }
public int Green { get { return _green; } set { _green = value; } }
public int Blue { get { return _blue; } set { _blue = value; } }
public void ToHEX(int red, int green, int blue)
{
Console.WriteLine($"use converter:\t\thttps://g.co/kgs/uTbKXYd");
}
public void ToHSL(int red, int green, int blue)
{
Console.WriteLine($"use converter:\t\thttps://g.co/kgs/uTbKXYd");
}
public void ToCMYK(int red, int green, int blue)
{
Console.WriteLine($"use converter:\t\thttps://g.co/kgs/uTbKXYd");
}
}
internal class Program
{
static void Main(string[] args)
{
//Завдання 1
//Створіть структуру «Тривимірний вектор».
//Визначте в ній необхідні поля і методи.
//Реалізуйте наступну функціональність:
//■ Помножити вектор на число;
//■ Додавання векторів;
//■ Віднімання векторів.
Console.WriteLine($"Task 1\n");
ThreeDimVector vector_1 = new ThreeDimVector(1, 2, 3);
ThreeDimVector vector_2 = new ThreeDimVector(4, 5, 6);
ThreeDimVector vector_3 = new ThreeDimVector();
Console.WriteLine($"vector 1:\t\t{vector_1}");
Console.WriteLine($"vector 2:\t\t{vector_2}");
vector_3.MultByNum(vector_1, 10);
Console.WriteLine($"mult:\t\t\t{vector_3}");
vector_3.SumOfVectors(vector_1, vector_2);
Console.WriteLine($"sum:\t\t\t{vector_3}");
vector_3.SubOfVectors(vector_2, vector_1);
Console.WriteLine($"sub:\t\t\t{vector_3}");
Console.WriteLine("\nPress any key to continue . . .");
Console.ReadKey();
Console.WriteLine();
//Завдання 2
//Створіть структуру «Десяткове число». Визначте в
//ній необхідні поля і методи.
//Реалізуйте наступну функціональність:
//■ Перевести число у двійкову систему;
//■ Перевести число у вісімкову систему;
//■ Перевести число у шістнадцяткову систему.
Console.WriteLine($"Task 2\n");
DecimalNumber num = new DecimalNumber();
num.Value = 10;
Console.WriteLine($"{num.Value} to binary:\t\t{num.ToBinary()}");
Console.WriteLine($"{num.Value} to octal:\t\t{num.ToOctal()}");
Console.WriteLine($"{num.Value} to hexadecimal:\t{num.ToHexadecimal()}");
Console.WriteLine("\nPress any key to continue . . .");
Console.ReadKey();
Console.WriteLine();
//Завдання 3
//Створіть структуру «RGB колір».
//Визначте в ній необхідні поля і методи.
//Реалізуйте наступну функціональність:
//■ Перевести у HEX формат;
//■ Перевести у HSL;
//■ Перевести у CMYK.
Console.WriteLine($"Task 3\n");
RGB rgb = new RGB();
rgb.ToHEX(0, 0, 0);
rgb.ToHSL(0, 0, 0);
rgb.ToCMYK(0, 0, 0);
Console.WriteLine();
}
}
}