1
0

eingabe fix 2

This commit is contained in:
Joel Baldauf
2021-01-08 12:30:13 +01:00
parent b2f6ac7c33
commit 5932606560
+1 -1
View File
@@ -148,7 +148,7 @@ int main()
getline(cin, str);
tag = stoi(str.substr(0, str.find('.')));
monat = stoi(str.substr(str.find('.')+1, str.find('.')));
monat = stoi(str.substr(str.find('.')+1, str.find('.')+1));
jahr = stoi(str.substr(str.find('.', 3) + 1));
//cout << "tag: " << tag << "monat: " << monat << "jahr " << jahr;