Modernes C++ programmieren

Okt 23, 2024

lst-0944-godb.cpp

//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// 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!
}