home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat138.c */
- /*------------------------------------------------------------------*/
- #include <math.h>
- #include <stdio.h>
-
- void main()
- {
- double a = 100.0, b = -3.0;
- double result;
-
- result = pow(a,b);
- printf("%lf ñº %lf ª╕ñΦ¼░ : %lf\n", a, b, result);
- }