Modernes C++ programmieren

Okt 23, 2024

lst-0112-book.cpp

// https://godbolt.org/z/cd1d1W7T1 
#include <array>
#include <iostream>
using std::cout; using std::array; using std::string;
int main() {
  array<string,7> wotag = { "Montag", "Dienstag",        // definieren
      "Mittwoch", "Donnerstag", "Freitag", "Samstag", "Sonntag" };
  cout << "Die Woche beginnt mit " << wotag[0] << ".\n"; // Werte lesen
  cout << "Sie endet mit " << wotag.at(6) << ".\n";      // sicheres Werte lesen
  /* nordisch? */
  wotag[5] = "Sonnabend";                                // Werte verändern
}