US-01
Як користувач, я хочу створити обліковий запис у системі, щоб отримати доступ до можливостей бронювання авіаквитків.
Група СПР-411
(коригування дат по тижнях для нашої групи/команди, точна дата захисту проєкту: СПР411 - 2 травня 2026 року)
- Формування команд (по 2–4 особи залежно від складності проєкту – уточнюється 23.02.2026), визначення назви команди
- Обговорення та вибір теми проєкту
- Первинне вивчення можливостей і вимог обраного проєкту
- Огляд технологій, які можна використовувати в ASP.NET Core
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; // базові типи (Console, string тощо) | |
| using System.Linq; // для LINQ-запитів | |
| using System.Text; // для Encoding.UTF8 | |
| using System.Xml.Linq; // для роботи з XML через LINQ to XML | |
| // https://learn.microsoft.com/uk-ua/dotnet/api/system.xml.linq | |
| class Program | |
| { | |
| static void Main() | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * STANDART TEMPLATE LIBRARY | |
| * Використати контейнер <set>, й відповідний ітератор, для збереження | |
| * об'єктів типу Student. Використати алгоритми STL для пошуку елемента. | |
| */ | |
| #include <string> | |
| #include <iostream> | |
| #include <set> | |
| #include <algorithm> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // РОБОТА З ДИНАМІЧНИМИ ОДНОВИМІРНИМИ МАСИВАМИ в С++ | |
| #include <iostream> | |
| #include <windows.h> // SetConsoleOutputCP | |
| #include <stdexcept> // для роботи з винятками | |
| #include <cstdlib> | |
| #include <ctime> | |
| using namespace std; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| ПРАКТИЧНИЙ ПРОЄКТ (чернетка) | |
| з дисципліни "Програмування з використанням мови C++" | |
| (процедурна частина) | |
| Двовимірна гра "ТЕТРІС" | |
| Виконав студент гр. СПР411 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <windows.h> | |
| using namespace std; | |
| double power(double* base, int* exp); | |
| int main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <windows.h> | |
| #include <string> | |
| using namespace std; | |
| // Завдання на рекурсію (12 задач) | |
| // 1) Від 1 до n. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USE Store | |
| -- https://gist.github.com/sunmeat/59dc33337af869024a7b18602b556b00 | |
| -- Бажано побудувати діаграму бази даних за посиланням. | |
| -- 1. Вивести кількість товарів кожної категорії, середня ціна поставки яких | |
| -- більше 100 гривень. | |
| SELECT | |
| c.name [Категорія], | |
| AVG(d.price) [Середня ціна поставки], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <windows.h> | |
| #include <conio.h> // _getch | |
| #include <ctime> | |
| #include <cstdlib> | |
| using namespace std; | |
| // Розміри ігрового поля (глобальні константи як виняток) | |
| const int HEIGHT = 25; |
NewerOlder