所以我把这个文件命名为“test.txt”,这个文件的内容如下:
一次
两次
我要做的是读取这个文件,逐行获取它的内容并将其附加到一个名为“myarray”的数组中,如下所示。目前我能够读取文件,计算文件中有多少行,但是 cannon 弄清楚如何将每一行附加到我的数组中它自己的索引中。
这是到目前为止的代码:
String filename = "C:\test.txt"
Stream input = read filename
string str
int Number
int star = 0
while (true)
{
int NUMBER
input >> str
if (end of input) break
star++
}
NUMBER = star
string myarray[NUMBER] = {str}
print myarray[]`
理论上,我想 myarray[NUMBER] = {"once","twice"}
非常感谢任何建议。谢谢!