|
|
|
|
|
|
|
//******************************************************************
// BirthdayReminder program
// This program takes a month as input and prints the
// list of birthdays associated with that month
//*****************************************************************
#include <iostream.h>
enum Months
{
JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE,
JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, DECEMBER
};
Months A_Month( char );
Months J_Month( char, char );
Months M_Month( char );
void GetMonth( Months& );
void PrintJanuary();
void PrintFebruary();
void PrintMarch();
void PrintApril();
void PrintMay();
void PrintJune();
void PrintJuly();
void PrintAugust();
void PrintSeptember();
void PrintOctober();
void PrintNovember();
void PrintDecember(); |
|
|
|
|
|