initial commit

This commit is contained in:
2023-07-16 13:23:25 +00:00
commit c3fa5367c3
85 changed files with 4921 additions and 0 deletions

20
C++/lesson1/task6.cpp Normal file
View File

@ -0,0 +1,20 @@
#include <iostream>
int main() {
int a;
std::cin >> a;
switch (a) {
case 1:
std::cout << "Дизайн\n";
break;
case 2:
std::cout << "Программирование\n";
break;
case 3:
std::cout << "Веб\n";
break;
case 4:
std::cout << "Сис-админ\n";
break;
}
}