diff options
author | Oskar <[email protected]> | 2024-08-05 20:57:13 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-08-05 20:57:13 +0200 |
commit | 4483699cc8cc937cb27040cfbd809b8a90029391 (patch) | |
tree | 6edbe3e65d3c922c535078161b35d0892e6d34ec /3p5.cpp | |
parent | 1d105b91b9678ffaa8eddea2218ed1789f5be27c (diff) |
more exercises
Diffstat (limited to '3p5.cpp')
-rw-r--r-- | 3p5.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4,7 +4,7 @@ /* * - * Description + * 3.5 * * */ @@ -19,7 +19,6 @@ int main () { string full; string full_sep; - //string whitespace(" "); string DD; while(cin >> DD) { full += DD; @@ -27,6 +26,6 @@ int main () { } cout << full << endl; cout << full_sep << endl; - + return 0; } |