├── .gitignore ├── README.md ├── illustr ├── Git usage │ ├── 1.PNG │ ├── 2.PNG │ ├── Console │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── 8.png │ └── GitKraken │ │ ├── 10.PNG │ │ ├── 11.PNG │ │ ├── 3.PNG │ │ ├── 4.PNG │ │ ├── 5.PNG │ │ ├── 6.1.png │ │ ├── 6.2.png │ │ ├── 6.PNG │ │ ├── 7.1.png │ │ ├── 7.PNG │ │ ├── 8.1.png │ │ ├── 8.PNG │ │ ├── 9.PNG │ │ └── how-to-fork.png ├── Install IDE │ ├── CLion_03.JPG │ ├── CLion_05.JPG │ ├── CLion_06.JPG │ ├── VS_01.JPG │ └── VS_02.JPG ├── Strings_1.png ├── diagrams.vsdx └── Структура проекта.png ├── manuals ├── About Git.md ├── Console manual.md ├── GitKraken manual.md └── IDE Install.md ├── source ├── Basics_01_FirstProgram.h ├── Basics_02.1_Variables.h ├── Basics_02.2_GlobalVariables.h ├── Basics_02.3_LocalVariables.h ├── Basics_02.4_LocalGlobalVariables.h ├── Basics_03.4_Cycles.h ├── Basics_04_Functions.h ├── Basics_05_Pointers.h ├── Basics_06.1_References.h ├── Basics_06.2_ReferenceParam.h ├── Basics_06.3_ReferencesVsPointers.h ├── Basics_07.1_StaticArray.h ├── Basics_07.2_TwoDimArray.h ├── Basics_07.3_MultDimArray.h ├── Basics_07.4_DynamicArray.h ├── Basics_07.5_Strings.h ├── Basics_07.6_TwoDimDynamicArray.h ├── Basics_08.3_FileIO.h ├── Basics_09_Structures.h ├── Basics_10_Unions.h ├── Basics_11_Enum.h ├── Basics_Extra_01_StructEnum.h ├── Basics_Extra_02_StructArray.h ├── Basics_Extra_03_StructList.h ├── CMakeLists.txt ├── Example.txt ├── Main.cpp ├── OOP_01.1_Classes.h ├── OOP_01.2_Encapsulation.h ├── OOP_01.3_ClassLifeCycle.h ├── OOP_01.4_CopyConstructor.h ├── OOP_02_OperatorOverloading.h ├── OOP_03_Inheritance.h ├── OOP_Extra_ArrayOfObjects.h ├── OOP_Extra_AssocArray.h ├── OOP_Extra_StructVsClass.h ├── OOP_TaskExample_5_Classes.h ├── StudentCpp.sln ├── StudentCpp.vcxproj ├── Templates_1_Templates.h ├── Templates_2_TemplateList.h ├── Templates_Extra_AssocArrayTemplate.h ├── todo_Basics_03.1_Cast.h ├── todo_Basics_03.2_Operators.h ├── todo_Basics_03.3_ConditionOperator.h ├── todo_Basics_08.1_Stream.h ├── todo_Basics_08.2_FoolProtection.h ├── todo_OOP_04.1_VirtualFunctions.h ├── todo_OOP_04.2_AbstactClass.h ├── todo_OOP_05_Polymorph.h └── todo_Zzz_AdvancedStreamIO.h ├── susu-materials ├── exam.md ├── ide.md ├── literature.md ├── papers │ ├── Методические указания по написанию КП.docx │ └── Образец ПЗ к КП.docx └── slides │ ├── Объектно-ориентированное программирование на C++.pdf │ └── Структурное программирование на C++.pdf └── tasks ├── kurs.md ├── lab1-lvl0.md ├── lab1-lvl1.md ├── lab1-lvl2.md ├── lab2-lvl0.md ├── lab2-lvl1.md ├── lab2-lvl2.md ├── lab3-lvl0.md ├── lab3-lvl1.md ├── lab3-lvl2.md ├── lab4-lvl0.md ├── lab4-lvl1.md ├── lab4-lvl2.md └── old ├── ПЯВУ_лр2.doc ├── ПЯВУ_лр3.doc ├── ПЯВУ_лр4.doc ├── ПЯВУ_лр5.doc ├── ПЯВУ_лр6.doc └── ПЯВУ_лр7.doc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/README.md -------------------------------------------------------------------------------- /illustr/Git usage/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/1.PNG -------------------------------------------------------------------------------- /illustr/Git usage/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/2.PNG -------------------------------------------------------------------------------- /illustr/Git usage/Console/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/Console/1.png -------------------------------------------------------------------------------- /illustr/Git usage/Console/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/Console/2.png -------------------------------------------------------------------------------- /illustr/Git usage/Console/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/Console/3.png -------------------------------------------------------------------------------- /illustr/Git usage/Console/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/Console/4.png -------------------------------------------------------------------------------- /illustr/Git usage/Console/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/Console/5.png -------------------------------------------------------------------------------- /illustr/Git usage/Console/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/Console/6.png -------------------------------------------------------------------------------- /illustr/Git usage/Console/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/Console/7.png -------------------------------------------------------------------------------- /illustr/Git usage/Console/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/Console/8.png -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/10.PNG -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/11.PNG -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/3.PNG -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/4.PNG -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/5.PNG -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/6.1.png -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/6.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/6.2.png -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/6.PNG -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/7.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/7.1.png -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/7.PNG -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/8.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/8.1.png -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/8.PNG -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/9.PNG -------------------------------------------------------------------------------- /illustr/Git usage/GitKraken/how-to-fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Git usage/GitKraken/how-to-fork.png -------------------------------------------------------------------------------- /illustr/Install IDE/CLion_03.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Install IDE/CLion_03.JPG -------------------------------------------------------------------------------- /illustr/Install IDE/CLion_05.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Install IDE/CLion_05.JPG -------------------------------------------------------------------------------- /illustr/Install IDE/CLion_06.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Install IDE/CLion_06.JPG -------------------------------------------------------------------------------- /illustr/Install IDE/VS_01.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Install IDE/VS_01.JPG -------------------------------------------------------------------------------- /illustr/Install IDE/VS_02.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Install IDE/VS_02.JPG -------------------------------------------------------------------------------- /illustr/Strings_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Strings_1.png -------------------------------------------------------------------------------- /illustr/diagrams.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/diagrams.vsdx -------------------------------------------------------------------------------- /illustr/Структура проекта.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/illustr/Структура проекта.png -------------------------------------------------------------------------------- /manuals/About Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/manuals/About Git.md -------------------------------------------------------------------------------- /manuals/Console manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/manuals/Console manual.md -------------------------------------------------------------------------------- /manuals/GitKraken manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/manuals/GitKraken manual.md -------------------------------------------------------------------------------- /manuals/IDE Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/manuals/IDE Install.md -------------------------------------------------------------------------------- /source/Basics_01_FirstProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_01_FirstProgram.h -------------------------------------------------------------------------------- /source/Basics_02.1_Variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_02.1_Variables.h -------------------------------------------------------------------------------- /source/Basics_02.2_GlobalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_02.2_GlobalVariables.h -------------------------------------------------------------------------------- /source/Basics_02.3_LocalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_02.3_LocalVariables.h -------------------------------------------------------------------------------- /source/Basics_02.4_LocalGlobalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_02.4_LocalGlobalVariables.h -------------------------------------------------------------------------------- /source/Basics_03.4_Cycles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_03.4_Cycles.h -------------------------------------------------------------------------------- /source/Basics_04_Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_04_Functions.h -------------------------------------------------------------------------------- /source/Basics_05_Pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_05_Pointers.h -------------------------------------------------------------------------------- /source/Basics_06.1_References.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_06.1_References.h -------------------------------------------------------------------------------- /source/Basics_06.2_ReferenceParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_06.2_ReferenceParam.h -------------------------------------------------------------------------------- /source/Basics_06.3_ReferencesVsPointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_06.3_ReferencesVsPointers.h -------------------------------------------------------------------------------- /source/Basics_07.1_StaticArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_07.1_StaticArray.h -------------------------------------------------------------------------------- /source/Basics_07.2_TwoDimArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_07.2_TwoDimArray.h -------------------------------------------------------------------------------- /source/Basics_07.3_MultDimArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_07.3_MultDimArray.h -------------------------------------------------------------------------------- /source/Basics_07.4_DynamicArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_07.4_DynamicArray.h -------------------------------------------------------------------------------- /source/Basics_07.5_Strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_07.5_Strings.h -------------------------------------------------------------------------------- /source/Basics_07.6_TwoDimDynamicArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_07.6_TwoDimDynamicArray.h -------------------------------------------------------------------------------- /source/Basics_08.3_FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_08.3_FileIO.h -------------------------------------------------------------------------------- /source/Basics_09_Structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_09_Structures.h -------------------------------------------------------------------------------- /source/Basics_10_Unions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_10_Unions.h -------------------------------------------------------------------------------- /source/Basics_11_Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_11_Enum.h -------------------------------------------------------------------------------- /source/Basics_Extra_01_StructEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_Extra_01_StructEnum.h -------------------------------------------------------------------------------- /source/Basics_Extra_02_StructArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_Extra_02_StructArray.h -------------------------------------------------------------------------------- /source/Basics_Extra_03_StructList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Basics_Extra_03_StructList.h -------------------------------------------------------------------------------- /source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/CMakeLists.txt -------------------------------------------------------------------------------- /source/Example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Example.txt -------------------------------------------------------------------------------- /source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Main.cpp -------------------------------------------------------------------------------- /source/OOP_01.1_Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/OOP_01.1_Classes.h -------------------------------------------------------------------------------- /source/OOP_01.2_Encapsulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/OOP_01.2_Encapsulation.h -------------------------------------------------------------------------------- /source/OOP_01.3_ClassLifeCycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/OOP_01.3_ClassLifeCycle.h -------------------------------------------------------------------------------- /source/OOP_01.4_CopyConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/OOP_01.4_CopyConstructor.h -------------------------------------------------------------------------------- /source/OOP_02_OperatorOverloading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/OOP_02_OperatorOverloading.h -------------------------------------------------------------------------------- /source/OOP_03_Inheritance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/OOP_03_Inheritance.h -------------------------------------------------------------------------------- /source/OOP_Extra_ArrayOfObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/OOP_Extra_ArrayOfObjects.h -------------------------------------------------------------------------------- /source/OOP_Extra_AssocArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/OOP_Extra_AssocArray.h -------------------------------------------------------------------------------- /source/OOP_Extra_StructVsClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/OOP_Extra_StructVsClass.h -------------------------------------------------------------------------------- /source/OOP_TaskExample_5_Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/OOP_TaskExample_5_Classes.h -------------------------------------------------------------------------------- /source/StudentCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/StudentCpp.sln -------------------------------------------------------------------------------- /source/StudentCpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/StudentCpp.vcxproj -------------------------------------------------------------------------------- /source/Templates_1_Templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Templates_1_Templates.h -------------------------------------------------------------------------------- /source/Templates_2_TemplateList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Templates_2_TemplateList.h -------------------------------------------------------------------------------- /source/Templates_Extra_AssocArrayTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/Templates_Extra_AssocArrayTemplate.h -------------------------------------------------------------------------------- /source/todo_Basics_03.1_Cast.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /source/todo_Basics_03.2_Operators.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /source/todo_Basics_03.3_ConditionOperator.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /source/todo_Basics_08.1_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/todo_Basics_08.1_Stream.h -------------------------------------------------------------------------------- /source/todo_Basics_08.2_FoolProtection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/todo_Basics_08.2_FoolProtection.h -------------------------------------------------------------------------------- /source/todo_OOP_04.1_VirtualFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/todo_OOP_04.1_VirtualFunctions.h -------------------------------------------------------------------------------- /source/todo_OOP_04.2_AbstactClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/todo_OOP_04.2_AbstactClass.h -------------------------------------------------------------------------------- /source/todo_OOP_05_Polymorph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/todo_OOP_05_Polymorph.h -------------------------------------------------------------------------------- /source/todo_Zzz_AdvancedStreamIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/source/todo_Zzz_AdvancedStreamIO.h -------------------------------------------------------------------------------- /susu-materials/exam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/susu-materials/exam.md -------------------------------------------------------------------------------- /susu-materials/ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/susu-materials/ide.md -------------------------------------------------------------------------------- /susu-materials/literature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/susu-materials/literature.md -------------------------------------------------------------------------------- /susu-materials/papers/Методические указания по написанию КП.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/susu-materials/papers/Методические указания по написанию КП.docx -------------------------------------------------------------------------------- /susu-materials/papers/Образец ПЗ к КП.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/susu-materials/papers/Образец ПЗ к КП.docx -------------------------------------------------------------------------------- /susu-materials/slides/Объектно-ориентированное программирование на C++.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/susu-materials/slides/Объектно-ориентированное программирование на C++.pdf -------------------------------------------------------------------------------- /susu-materials/slides/Структурное программирование на C++.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/susu-materials/slides/Структурное программирование на C++.pdf -------------------------------------------------------------------------------- /tasks/kurs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/kurs.md -------------------------------------------------------------------------------- /tasks/lab1-lvl0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab1-lvl0.md -------------------------------------------------------------------------------- /tasks/lab1-lvl1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab1-lvl1.md -------------------------------------------------------------------------------- /tasks/lab1-lvl2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab1-lvl2.md -------------------------------------------------------------------------------- /tasks/lab2-lvl0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab2-lvl0.md -------------------------------------------------------------------------------- /tasks/lab2-lvl1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab2-lvl1.md -------------------------------------------------------------------------------- /tasks/lab2-lvl2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab2-lvl2.md -------------------------------------------------------------------------------- /tasks/lab3-lvl0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab3-lvl0.md -------------------------------------------------------------------------------- /tasks/lab3-lvl1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab3-lvl1.md -------------------------------------------------------------------------------- /tasks/lab3-lvl2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab3-lvl2.md -------------------------------------------------------------------------------- /tasks/lab4-lvl0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab4-lvl0.md -------------------------------------------------------------------------------- /tasks/lab4-lvl1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab4-lvl1.md -------------------------------------------------------------------------------- /tasks/lab4-lvl2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/lab4-lvl2.md -------------------------------------------------------------------------------- /tasks/old/ПЯВУ_лр2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/old/ПЯВУ_лр2.doc -------------------------------------------------------------------------------- /tasks/old/ПЯВУ_лр3.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/old/ПЯВУ_лр3.doc -------------------------------------------------------------------------------- /tasks/old/ПЯВУ_лр4.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/old/ПЯВУ_лр4.doc -------------------------------------------------------------------------------- /tasks/old/ПЯВУ_лр5.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/old/ПЯВУ_лр5.doc -------------------------------------------------------------------------------- /tasks/old/ПЯВУ_лр6.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/old/ПЯВУ_лр6.doc -------------------------------------------------------------------------------- /tasks/old/ПЯВУ_лр7.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StriderAJR/StudentCpp/HEAD/tasks/old/ПЯВУ_лр7.doc --------------------------------------------------------------------------------