Do you mind explaining it more to me? I've been having a hard time with CS. Also, our teacher has been working <iostream> with us and we've never learned <cstdio>.
I'm not sure what you want explained. If you never assign a string a value, it will remain empty. You never assign the string futureDay a value, so it remains empty. As well, you have a bunch of other variables that are never used. What are they (Sun, Mon, etc.) there for?
I've been having a hard time with CS. Also, our teacher has been working <iostream> with us and we've never learned <cstdio>.
Then you probably should be using C input functions like getchar. The C++ equivalent to getchar(); is cin.get();, but if your environment is configured correctly neither should be necessary.