der Compiler übersetzt korrekt. Aber statt des Wochentages, bekomme ich die Ziffer ausgegeben.
Hier der Code:
C++:
# include <iostream> // für cout und cin # include <conio.h> // für getch() # include <iomanip> // für boolalpha bzw. noboolalpha # include <string> // für Zeichenketten
usingnamespace std;
int main() { cout << "Bitte den Wochentag (0-6) eingeben: "; int tag; cin >> tag;