I know many people have suggested to me to not use code such as
using namespace std;
or
system ("pause");
system ("cls");
system ("color f0");//and other system commands
or
goto TitleScreen;
goto DeathScreen;
or
break;
and I'm just wondering why these things are looked down upon and what C++ commands can replace the bad habits of mine?