我的文本文件包含整數像:123 879709789 43536 8768768
讀取文本文件包含由空格隔開隨機大小的整數
我想在像陣列的一個數組索引來讀取整個數[1] = 123陣列[2] = 879709789 。
這是我已經試過:
ifstream myfile("numbers.txt");
if (myfile.is_open())
{
while (myfile.good() && !myfile.eof())
{
for(i=1; i<myfile.eof(); i++)
{
myfile >> ar[i];
if(ar[i]=="")
{
i++;
}
}
}
}
想要顯示你試過的嗎? – ogzd 2013-02-11 21:04:09
你有沒有嘗試過自己的東西?從現在您的問題來看,我們看不到您的任何努力以某種方式自己解決問題。 – LihO 2013-02-11 21:04:59
ifstream myfile(「numbers.txt」); 如果(myfile.is_open()){ 而(myfile.good()&& myfile.eof()){對於 (I = 1; I> AR [一世]; (ar [] ==「」){ i ++; } –
2013-02-11 21:05:49