Programming
Project One ECN1
Date: 02 February 2005 Author: Tim Finin, finin@Umbc.edu The PrintInterval function has been changed to take two dates rather than one. The new function prototype is now: void PrintInterval(int day1, int month1, int year1, int day2, int month2, int year2);In the original design, it took three integers representing one date and queried the user for the other date. In the new design, six integers specifying two dates are required as inputs. |