我想用C ++创建一个程序,该程序打开并读取txt文件(例如一首诗),然后以滚动方式将其输出到屏幕底部(例如:like重大新闻)。
我想我将从这个开始:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(void)
{
ifstream infile;
infile.open("POEM.txt", ios::in);
if (!infile)
{
cout<<"File does not exist";
return EXIT_FAILURE;
}
std::string text_from file;
while (getline(infile, text_from_file))
{
cout << text_from_file << "\n";
}
cout << "Paused. Press enter to continue.\n"
cin.ignore(10000, '\n');
return EXIT_SUCCESS;
}
我无法做的是滚动文本部分。