This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//update: | |
/// this is just some exercise code in the book i study so i thought it could be useful to some people about the methods in the code | |
/// changes: | |
/// added: | |
/// class operator function Date operator(Date&) - with this you can now assign a date object to another date object | |
/// class JulianDate: methods ->> object.jdatedisplay() - displays the julian date | |
//// ->> object.Date(); - converts and diplays the julian date to gregorian date | |
/// ->> overloaded constructor -> JulianDate(int month, int day, int year); expects to have the values | |
//// and converts to julian date | |
/// |