home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat32.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <math.h>
-
- void main()
- {
- double result;
- double p = 3.14159;
-
- result = cos(p);
- printf(" %lf ñº╛l⌐╢¡╚¼░ %lf\n", p, result);
- }
-