Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include "MathFuncsDll.h"
  2. #include <stdexcept>
  3. #include "stdafx.h"
  4. #include <cmath>
  5.  
  6. using namespace std;
  7. namespace MathFuncs
  8. {
  9. double MyMathFuncs::func(double x)
  10. {
  11. return sin(1 / x) + 5 * sin(x)*sin(x);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement