Why are there ones after alomst every line?

there are ones on almost every line in the terminal (that are from the text). I reviewed my code and could not find a good reason for this.

You didn’t successfully compile so you’re running the program where you last successfully compiled.
You didn’t compile successfully because you have errors on lines 7 to 12. You need to remove the second std::cout i.e.

std::cout << "..." << std::endl;

and not

std::cout << "..." << std::cout << std::endl;

ohhhhh ok

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.