SquareSolver is an open source console application for solving quadratic equations.
To use it you have to have g++ compiler installed on your PC. (guide for Windows: https://www.freecodecamp.org/news/how-to-install-c-and-cpp-compiler-on-windows/)
Installation guide:
- Clone this repository to your computer (guide: https://docs.github.com/ru/repositories/creating-and-managing-repositories/cloning-a-repository)
- Open folder where code is located and right-click an empty space in explorer, then click "Open in terminal"
- Type in the following commands
- If you have Windows PowerShell, type in the following:
g++.exe .\main.cpp .\cmdLine.cpp .\square_solver.cpp .\get_print_eq.cpp .\tester.cpp -o .\main.exe - If you don't have Windows PowerShell, type in the following:
g++ main.cpp square_solver.cpp tester.cpp get_print_eq.cpp cmdLine.cpp -o main.exe
- Type in
main.exe(or.\main.exeif you have Windows PowerShell) and press - If you want to learn about flags available, repeat step 4, but before pressing "enter" add
--helpEnjoy math!
The project was created by Tikhonov Yaroslav in educational purposes. 2023.