does anyone know what this error actually means?

terminate called after throwing an instance of 'std::out_of_range'
what(): basic_string::substr

it happened when i wrote this line...

string output2 = last + first + scores + string(4, ' ').substr(scores.size()) + " ";

its telling you that scores.size() is greater than 4, which is out-of-bounds.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.