home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat128.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <stdlib.h>
-
- void main()
- {
- int result;
- int x = 20;
- int y = -20;
-
- result = min(x,y);
- printf(" %d ╗P %d ╕√ñp¬╠¼░ : %d",x,y,result);
- }