fork download
  1. #include <iostream>
  2. #include <map>
  3. #include <cmath>
  4. using namespace std;
  5.  
  6. int main() {
  7. const std::map<std::string, float(*)(float)> math_parse = {
  8. {std::string("SQRT"), &std::sqrt}};
  9. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
Standard output is empty