home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT189.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-17  |  387 b   |  15 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat189.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <math.h>
  6.  
  7. void main()
  8. {
  9.    double value, x;
  10.  
  11.    x = 0.1;
  12.    value = tanh(x);
  13.    printf("%lf ñº┬∙ª▒╜uÑ┐ñ┴¡╚¼░: %lf\n", x, value);
  14. }
  15.