Appendix 2: Displaying Data Formats
101
// // --- Get the Month ---
//
// sMonth--;
// if (sMonth < 0) sMonth = 0;
// if (sMonth > 11) sMonth = 11;
//
//
// // --- Get the Day ---
//
// sDay--;
// if (sDay < 0) sDay = 0;
// if (sDay >= psMonths[sMonth]) sDay = (short)
(psMonths[sMonth]-1);
//
//
// // --- Add days in the previous months ---
//
// i=0;
// while (i < sMonth) sDay += psMonths[i++];
//
//
// // --- Compute the Value ---
//
// return((double) sYear + ((double) sDay / (double) sDays));
// }
#endif