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 <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
#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
/* | |
ПРАКТИЧНИЙ ПРОЄКТ (чернетка) | |
з дисципліни "Програмування з використанням мови C++" | |
(процедурна частина) | |
Двовимірна гра "ТЕТРІС" | |
Виконав студент гр. СПР411 |
OlderNewer