home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat195.c */
- /*------------------------------------------------------------------*/
- #include <stdlib.h>
- #include <stdio.h>
-
- void main()
- {
- unsigned long value = 85013;
- char buffer[33];
- int i;
-
- for (i=2;i<=36;i++)
- {
- ultoa(value, buffer, i);
- printf("╡L╕╣¬°╛π╝╞ %ld ÑH %2d ¼░░≥⌐│┬α┤½⌐╥▒oñºªrªΩ¼░: %s\n",
- value, i, buffer);
- }
- }