if(command=="insert")
{
int i=0;
while(i>=0)
{
string textToSave[i];
cout << "Enter the string you want saved: " << endl;
cin >>textToSave[i];
ofstream saveFile ("Save.txt");
saveFile << textToSave;
saveFile.close();
i++;
break;
}
}
我想将输入的数组存储到 .txt 文件中。但是我在创建要存储的数组时遇到问题。在whileloop和forloop之间选择我也很纠结,但认为while循环更合适,因为不知道插入单词需要多少时间。请帮忙。谢谢。