lst-0944-book.cpp
// https://godbolt.org/z/Md38b9zvf
#include <chrono>
#include <iostream>
#include <format>
using namespace std::chrono;
int main() {
auto ymd = last/February/2024; // letzter Tag im Februar 2024: 29.2.2024
std::cout << ymd << "\n"; // die Ausgabe mit << ist einfach
std::cout << std::format("{:%Y-%m-%d}\n", ymd); // format ist flexibler
std::cout << std::format("{:%e. %B %y}\n", ymd); // viel flexibler!
}