home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat112.c */
- /*------------------------------------------------------------------*/
- #include <math.h>
- #include <stdio.h>
-
- void main()
- {
- double result;
- double value = 0.12380;
-
- result = log2(value);
- printf("%lf ÑH 10 ¼░⌐│╝╞ñº╣∩╝╞¡╚¼░ %lf\n", value, result);
-
- }