# C++ 2 **Repository Path**: gengminghe/c-2 ## Basic Information - **Project Name**: C++ 2 - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-02-27 - **Last Updated**: 2025-02-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # C++ 2 ## Repository Structure ``` . ├── README.md ├── code ├── exercises │ └── exercises.md └── theory ├── Functions.md ├── Input And Output.md ├── Loops And Ifs.md └── Types.md ``` ## Getting Started ### Theory Before starting the exercises, please read: - [Functions](theory/Functions.md) - [Input And Output](theory/Input%20And%20Output.md) - [Loops And Ifs](theory/Loops%20And%20Ifs.md) - [Types](theory/Types.md) ### Exercises - [Exercise Instructions](exercises/exercises.md) ### Your Work Place your solutions in the `code` directory following the structure: ``` code/ ├── ex0/ │ └── main.cpp ├── ex1/ │ └── main.cpp ├── ex2/ │ └── main.cpp ├── ex3/ │ └── main.cpp ├── ex4/ │ └── main.cpp ├── ex5/ │ └── main.cpp ├── ex6/ │ └── main.cpp ├── ex7/ │ └── main.cpp ├── ex8/ │ └── main.cpp ├── ex9/ │ └── main.cpp └── ex10/ └── main.cpp ```