1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
#include <iostream>
// true if >= September 13, 1752
bool isGregorianDate(int month, int day, int year)
{
if (year < 1752)
return false;
if ( year == 1752 and month < 9 )
return false;
if ( month == 9 and day < 13)
return false;
return true;
}
void test_a_date( int year, int month, int day)
{
std::cout << (isGregorianDate(month, day, year)? "true":"false") << '\n';
}
int main()
{
test_a_date(1751,12,30);
test_a_date(1752,1,1);
test_a_date(1752,8,30);
test_a_date(1752,9,12);
test_a_date(1752,9,13);
test_a_date(1752,9,14);
test_a_date(1752,10,1);
test_a_date(1752,12,30);
test_a_date(1753,9,13);
return 0;
}
|