This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
Terminal-Based-Calculator/CalculatorFunctions.h

5 lines
204 B
C
Raw Normal View History

#include <iostream>
#include <cmath>
#include <functional>
double math(std::string text, std::function<double(double, double)> code, bool use_last_num);
double square_root(std::string, bool use_last_num);