home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG1_2B.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-21  |  2.5 KB  |  94 lines

  1. /* Prog 1_2b -- Convert a numeric ASCII string into a number
  2.     by Stephen R. Davis, 1987
  3.  
  4.     This second attempt is much more flexible and more of a 'C'
  5.     approach.   The differences may not seem all that significant,
  6.     but notice that this routine can handle octal and hexidecimal
  7.     as well as decimal output, it has no leading zero problem, and
  8.     it can even output a limited form of Roman numerals!
  9. */
  10.  
  11. #include <stdio.h>
  12.  
  13. /*prototype definitions --*/
  14. int main (void);
  15. void convnum (int, char *, int, char **);
  16.  
  17. /*ConvNum - given a number, a buffer, a base and the names of the
  18.             digits, convert the signed number using the base into
  19.             the buffer (for unsigned conversion, use 'unsigned'
  20.             declaration*/
  21. void convnum (number, buffer, base, names)
  22.     int number;              /*either signed or...    */
  23.     /*unsigned number;*/     /*...unsigned conversions*/
  24.     int base;
  25.     char *buffer, *names[];
  26. {
  27.     int basenum,nextpower,digit;
  28.     char *c;
  29.  
  30.     if (number < 0) {
  31.          number = -number;
  32.          *buffer++ = '-';
  33.     }
  34.     basenum = 1;
  35.     while ((nextpower = basenum * base) <= number)
  36.          basenum = nextpower;
  37.  
  38.     for (;basenum; basenum /= base) {
  39.          digit = number / basenum;
  40.          number -= digit * basenum;
  41.          for (c = names [digit]; *c; c++)
  42.               *buffer++ = *c;
  43.     }
  44.     *buffer = '\0';
  45. }
  46.  
  47.  
  48. /*Main - use a slightly more elaborate test*/
  49. int test[] = {1, 10, 100, 1000, 15, 25, -1, 0};
  50.  
  51. char *decsys[] = {"0", "1", "2", "3", "4",
  52.                   "5", "6", "7", "8", "9"},
  53.      *octsys[] = {"0", "1", "2", "3",
  54.                   "4", "5", "6", "7"},
  55.      *binsys[] = {"0", "1"},
  56.      *hexsys[] = {"0", "1", "2", "3", "4", "5", "6", "7",
  57.                   "8", "9", "A", "B", "C", "D", "E", "F"};
  58. main ()
  59. {
  60.     int i;
  61.     char buffer[25];
  62.  
  63.     printf ("\ndecimal:\n");
  64.     i = 0;
  65.     do {
  66.          convnum (test[i], buffer, 10, decsys);
  67.          printf ("%s   ", buffer);
  68.        } while (test[i++]);
  69.  
  70.     printf ("\noctal:\n");
  71.     i = 0;
  72.     do {
  73.          convnum (test[i], buffer, 8, octsys);
  74.          printf ("%s   ", buffer);
  75.        } while (test[i++]);
  76.  
  77.     printf ("\nbinary:\n");
  78.     i = 0;
  79.     do {
  80.          convnum (test[i], buffer, 2, binsys);
  81.          printf ("%s   ", buffer);
  82.        } while (test[i++]);
  83.  
  84.     printf ("\nhexidecimal:\n");
  85.  
  86.     i = 0;
  87.     do {
  88.          convnum (test[i], buffer, 16, hexsys);
  89.          printf ("%s   ", buffer);
  90.        } while (test[i++]);
  91.  
  92.     printf ("\nfinished\n");
  93. }
  94.