Question: does this look correct, its supposed to get continent names which are the names of the text files std::string Rivers::getContinent ( std::string river ) {

does this look correct, its supposed to get continent names which are the names of the text files std::string Rivers::getContinent(std::string river)
{
for (size_t i =0; i < lines.size(); ++i){
if (lines[i]== river){
return filenames[i].substr(0, filenames[i].find(".txt"));
}
}
// Return an empty string if the river is not found in any file
return "";
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!