CPP-Learning/README.md

23 lines
1.1 KiB
Markdown

# CPP-Learning
Anwendungen, die ich für das Lernen von C++ geschrieben habe
## [Schulübungen](units)
In diesem Ordner befinden sich alle Übungen, welche wir in der Schule bewältigt haben.
## Anwendungen
📂 Games
┗ 📜 **[Rock Paper Scissors](rpc.cpp)** - Play rpc against the computer
┗ 📜 **Tic Tac Toe** [[Console]](tictactoe.cpp) [[GUI]](ttt-gui.cpp) - Play Tic Tac Toe against the computer or a
friend
┗ 📜 **[Hearts](hearts.cpp)** - A SDL2 demo of hearts
📂 Miscellaneous
┗ 📜 **[Number Guesser](guesser.cpp)** - Guess a number between 1 and 10
┗ 📜 **[Calculator](calculator.cpp)** - A simple calculator
📂 Math
┗ 📜 **[Base 10 to 2](base_10_to_2.cpp)** - Convert a number from base 10 to base 2
┗ 📜 **Base 2 to 10** [[Static]](base_2_to_10_static.cpp) [[Normal]](base_2_to_10.cpp) - Convert a number from base 2 to base 10
┗ 📜 **[Bitwise Decoder](bitwise_decoder.cpp)** - An inventory system that demonstrates bitwise operations (decoding)
┗ 📜 **[Bitwise Encoder](bitwise_encoder.cpp)** - An inventory system that demonstrates bitwise operations (encoding)