我有一个问题,我做了一个方法来反转一个阶段的单词,但我的文本文件包含几行。 然后,结果显示在一行中。 我想要反转一行中的每个句子 我的文件包含
hello i am fine
GoodBye friends
结果显示我:
GoodBye friends fine am i hello
我想要显示:
fine am i hello
friends GoodBye
代码:
std::ifstream file("test.txt");
std::string content;
std::vector<std::string> numbers;
std::string line;
while(file >> content)
numbers.push_back(content);
for(int i = numbers.size() - 1; i >= 0; i--)
std::cout << numbers[i] << ' ';
std::cout << std::endl;