home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat184.c */
- /*------------------------------------------------------------------*/
- #include <stdlib.h>
- #include <stdio.h>
-
- void main()
- {
- char *ptr = "32000", *endptr;
- long number;
- int base;
-
- for(base=2;base<=36;base++)
- {
- number = strtol(ptr, &endptr, base);
- printf("ªrªΩ \"%s\" ÑH %2d ¼░░≥⌐│┬α┤½ª¿¬°╛π╝╞½ßñº¡╚¼░ %ld\n",
- ptr, base, number);
- }
- }