Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. //return pow(x*log(x),2);//4a
  2. //return x*sqrt(x-1);//4b
  3. //return x*x*sqrt(1+3*x*x);//4c
  4. //return exp(x)*cos(x)*cos(x);//4d
  5. //return pow(x*sin(x),2);//4e
  6. //return 1/(2+cos(x))/(3+sin(x));//4f
  7. //return 3*x*x+x+2;//5a
  8. //return 2*x*x-x*x+5*x;//5b
  9. //return 2*x*x*x-3*x;//5c
  10. //return exp(sqrt(x)+4);//5aT
  11. //return sqrt(3*x*x-5*x+4);//5bT
  12. //return x*x*x+2*x/(x*x+1);//5cT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement