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

  1. /*Program 3_2a - Print the names of the month
  2.     by Stephen R. Davis, 1987
  3.  
  4.   The following program inputs a number between 1 and 12 and outputs
  5.   the name of the corresponding month.  This program uses the
  6.   "straightforward" approach.
  7. */
  8.  
  9. #include <stdio.h>
  10.  
  11. /*prototyping definitions --*/
  12. int main (void);
  13. unsigned putmonths (unsigned);
  14.  
  15. /*Main - input a number and output the corresponding name of the
  16.      month*/
  17. main()
  18. {
  19.     unsigned innum;
  20.  
  21.     do {
  22.          printf ("Enter another month: ");
  23.          scanf ("%d",&innum);
  24.        } while (putmonths(innum));
  25. }
  26.  
  27. /*Putmonths - given a number, print the name of the corresponding
  28.               month.  Return that number, unless it is out of range,
  29.               in which case, return a 0.*/
  30. unsigned putmonths(month)
  31.     unsigned month;
  32. {
  33.     switch (month) {
  34.     case 1:   printf ("January\n\n");
  35.               break;
  36.     case 2:   printf ("February\n\n");
  37.               break;
  38.     case 3:   printf ("March\n\n");
  39.               break;
  40.     case 4:   printf ("April\n\n");
  41.               break;
  42.     case 5:   printf ("May\n\n");
  43.               break;
  44.     case 6:   printf ("June\n\n");
  45.               break;
  46.     case 7:   printf ("July\n\n");
  47.               break;
  48.     case 8:   printf ("August\n\n");
  49.               break;
  50.     case 9:   printf ("September\n\n");
  51.               break;
  52.     case 10:  printf ("October\n\n");
  53.               break;
  54.     case 11:  printf ("November\n\n");
  55.               break;
  56.     case 12:  printf ("December\n\n");
  57.               break;
  58.     default:  printf ("Bye bye\n\n");
  59.               month = 0;
  60.     }
  61.     return(month);
  62. }
  63.