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