home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat189.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <math.h>
-
- void main()
- {
- double value, x;
-
- x = 0.1;
- value = tanh(x);
- printf("%lf ñº┬∙ª▒╜uÑ┐ñ┴¡╚¼░: %lf\n", x, value);
- }