我想写一个程序,允许用户写一些随机的东西,但我得到一个错误说
没有匹配的调用我无法弄清楚。请帮我。当您尝试回答这个问题时,请尝试更加具体。
这是我的代码
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
string story;
ofstream theFile;
theFile.open("Random.txt");
while(cin.get(story,5000)!=EOF)
{
theFile<< story;
}
return 0;
}