//#(execute) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/oe1hT9McG
// … includes und usings …
struct Calendar {
int y_, m_, d_;
static const std::vector<int> mlens_;
bool leapyear() const {
if(y_ % 4 != 0) return false;
if(y_ % 100 != 0) return true;
if(y_ % 400 != 0) return false;
return true;
}
public:
Calendar(int year, int month, int day)
: y_{year}, m_{month}, d_{day} {}
void setCalendar(int year, int month, int day) {
y_ = year; m_ = month; d_ = day;
}
friend ostream& operator<<(ostream& os, const Calendar& c) {
return os << format("{:04}-{:02}-{:02}", c.y_, c.m_, c.d_);
}
void advance() { // +1 day
auto maxd = mlens_[m_-1]; // 0-basierter vector
if(m_==2 && leapyear())
maxd += 1; // Februar im Schaltjahr
if(d_ >= maxd) {
d_ = 1;
if(m_ >= 12) { m_ = 1; y_ += 1; }
else { m_ += 1; }
} else { d_ += 1; }
}
};
const std::vector<int> Calendar::mlens_ = {31,28,31,30,31,30,31,31,30,31,30,31};