t495.py 598 B

1234567891011121314151617181920212223242526272829303132333435
  1. import math
  2. print "\nmath.sinh"
  3. print math.sinh(2)
  4. print math.sinh(-7.5)
  5. print math.sinh(0)
  6. print math.sinh(13L)
  7. print "\nmath.cosh"
  8. print math.cosh(2)
  9. print math.cosh(-7.5)
  10. print math.cosh(0)
  11. print math.cosh(13L)
  12. print "\nmath.tanh"
  13. print math.tanh(2)
  14. print math.tanh(-7.5)
  15. print math.tanh(0)
  16. print math.tanh(13L)
  17. print "\nmath.asinh"
  18. print math.asinh(2)
  19. print math.asinh(-7.5)
  20. print math.asinh(0)
  21. print math.asinh(13L)
  22. print "\nmath.acosh"
  23. print math.acosh(2)
  24. print math.acosh(1.2)
  25. print math.acosh(13L)
  26. print "\nmath.atanh"
  27. print math.atanh(-0.2)
  28. print math.atanh(0)
  29. print math.atanh(0.5)