Post Your Ctrl-V - Printable Version +- CC Zone - Chip's Challenge Forum (https://forum.bitbusters.club) +-- Forum: Non-Chip's Challenge (https://forum.bitbusters.club/forum-6.html) +--- Forum: Games and Trivia (https://forum.bitbusters.club/forum-23.html) +--- Thread: Post Your Ctrl-V (/thread-1712.html) |
Post Your Ctrl-V - quiznos00 - 28-Jan-2014 6-Day Visit To Rural African Village Completely Changes Woman’s Facebook Profile Picture Post Your Ctrl-V - IceyLava108 - 28-Jan-2014 Well, we all know who won't be in episodes 8-15 Post Your Ctrl-V - Michael - 29-Jan-2014 [5:50:20 PM] James Anderson: i'm sure if i was cloned that the controller/boss glitch would get in the way Post Your Ctrl-V - IceyLava108 - 29-Jan-2014 Sealand Post Your Ctrl-V - lookatthis - 29-Jan-2014 I like how you praise every Josh level and then go on his videos and bash every Rock level, despite the fact mine are not in CCLP1 submissions. On the other hand, those were good indeed. Very original stuff. Post Your Ctrl-V - IceyLava108 - 29-Jan-2014 (sun) (sun) Post Your Ctrl-V - quiznos00 - 29-Jan-2014 <div style="font-size:11.9552px;font-family:monospace;">int Date::getDay() const { return day; } int Date::getMonth() const { return month; } int Date::getYear() const { return year; } void Date::setDay(int d) { day = d; } void Date::setMonth(int m) { month = m; } void Date::setYear(int y) { year = y; } void Date::increment() { if (!isLastDayInMonth()) { day++; } else { day = 1; if (month == 12) { // December month = 1; year++; } else { month++; } } } bool Date::isEqual(const Date& date2) const { return day == date2.day && month == date2.month && year == date2.year; } bool Date::isLeapYear() const { return (year%4 ==0 && year % 100 != 0) || year%400 == 0; } int Date::lastDayInMonth() const { if (month == 2 && isLeapYear()) return 29; else return DaysInMonth[ month ]; } bool Date::isLastDayInMonth() const { return day == lastDayInMonth(); // uses member function } void Date::print() const { std::cout << month << "/" << day << "/" << year; } bool sameDay(const Date& date1, const Date& date2) { return date1.getDay() == date2.getDay() && date1.getMonth() == date2.getMonth(); } 4 <a></a> Post Your Ctrl-V - Hash1 - 29-Jan-2014 My ROFLCOPTER goes soi soi soi Post Your Ctrl-V - quiznos00 - 29-Jan-2014 The Replacements - Bastards Of Young (Video) Post Your Ctrl-V - IceyLava108 - 29-Jan-2014 http://www.downloadfreeos.com/2013/06/windows-95.html |