Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rizamamedow/solutions-from-book
Here is my solution from "Nikita Kultin - C/C++ in tasks and examples" Book. Will be added in time.
https://github.com/rizamamedow/solutions-from-book
books c cmake cpp20 programming
Last synced: about 1 month ago
JSON representation
Here is my solution from "Nikita Kultin - C/C++ in tasks and examples" Book. Will be added in time.
- Host: GitHub
- URL: https://github.com/rizamamedow/solutions-from-book
- Owner: RizaMamedow
- Created: 2024-06-20T16:11:49.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-06-25T11:28:57.000Z (5 months ago)
- Last Synced: 2024-09-29T12:23:15.933Z (about 2 months ago)
- Topics: books, c, cmake, cpp20, programming
- Language: Makefile
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learn more
Here is my solution from "N.Kultin C/C++ in tasks and examples" Book. Will be added in time.
I'm a beginner in C++. This is my first challenge to solve all the interesting problems in this book xD.I checked the solution on СMake because it seems to me more convenient than other C++ compilers.
I don't know if I did it correctly, ~~at first I wrote in Xcode in C~~, then I decided that I needed to learn how to do everything manually. went to VS Code and configured CMake. I check the tasks in `main.cpp`. You can look at the solution in the files in the `solutions` directory. Above each function I put comments with a **LITERAL** translation of the problem (Book in Russian). then I write the algorithm solution. I give the names of the functions according to the meaning of the task, for example, I need to find the area of a triangle, I'll call it `computeTriangleSquare()`. By the way, I name the files in the `solutions` folder by sections from the book, that is, if the section of the book is "Output" I give the name "outputs.cpp". That's all.