- Назва проекту: Веб-магазин спортивного одягу «Спортполітен».
- Замовник: Загоруйко Олександр Дмитрович.
- Мета проекту: Створення онлайн платформи для продажу спортивних товарів з можливістю здійснення замовлень і оплати через інтернет.
- Терміни реалізації: 25.03.2026.
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> | |
| void calcMinMaxArray(int array[], const unsigned int LENGTH, int* max, int* min) | |
| { | |
| *max = array[0]; | |
| *min = array[0]; | |
| for (unsigned int i = 0; i < LENGTH; i++) | |
| { | |
| if (array[i] > *max) |
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 "functions.h" | |
| int main() | |
| { | |
| const unsigned int LEN = 3; | |
| double array[LEN] = {}; | |
| fillArray(array, LEN); | |
| showArray(array, LEN); |