home *** CD-ROM | disk | FTP | other *** search
- /*Program 3_2a - Print the names of the month
- by Stephen R. Davis, 1987
-
- The following program inputs a number between 1 and 12 and outputs
- the name of the corresponding month. This program uses the
- "straightforward" approach.
- */
-
- #include <stdio.h>
-
- /*prototyping definitions --*/
- int main (void);
- unsigned putmonths (unsigned);
-
- /*Main - input a number and output the corresponding name of the
- month*/
- main()
- {
- unsigned innum;
-
- do {
- printf ("Enter another month: ");
- scanf ("%d",&innum);
- } while (putmonths(innum));
- }
-
- /*Putmonths - given a number, print the name of the corresponding
- month. Return that number, unless it is out of range,
- in which case, return a 0.*/
- unsigned putmonths(month)
- unsigned month;
- {
- switch (month) {
- case 1: printf ("January\n\n");
- break;
- case 2: printf ("February\n\n");
- break;
- case 3: printf ("March\n\n");
- break;
- case 4: printf ("April\n\n");
- break;
- case 5: printf ("May\n\n");
- break;
- case 6: printf ("June\n\n");
- break;
- case 7: printf ("July\n\n");
- break;
- case 8: printf ("August\n\n");
- break;
- case 9: printf ("September\n\n");
- break;
- case 10: printf ("October\n\n");
- break;
- case 11: printf ("November\n\n");
- break;
- case 12: printf ("December\n\n");
- break;
- default: printf ("Bye bye\n\n");
- month = 0;
- }
- return(month);
- }