void GetNextWord(string text, int & cur_pos, string & word)
{
SkipBackSpace(text, cur_pos);
for(int i =cur_pos; i!=text.length()&&text[i]!=' '&&text[i]!='\n'; i++)
{
word+=text[i];
cur_pos++;
}
}
© 2002 - 2025 Diary.ru