I have something done very easily in Java, but what is the C++ version of the following:
while (in.hasNextLine())
{
String line = in.nextLine();
if (i == 13)
{
i++;
break;
}
i++;
}
It's the nextLine parts I can't seem to find a C++ equivalent for