Small, focused C++ programs for learning and exploring numerical methods.
- OS: macOS
- Editor: Neovim (with GitHub Copilot)
- Compiler: Clang (C++20)
clang++ -std=c++20 -Wall -Wextra -Wpedantic -g file.cpp -o file
./file
cpp-learning/ ββ 01_hello_world/ β ββ hello.cpp ββ 02_sum_to_n/ β ββ sum_to_n.cpp ββ 03_prime_check/ β ββ prime_check.cpp ββ 04_monte_carlo_pi/ β ββ monte_carlo_pi.cpp ββ README.md