0
我想從文件中讀取每個單詞。它打開了文件,但它並沒有進入while循環不從文件中讀取
string x;
ifstream inFile ("test.txt");
if (!inFile) {
cout << "Unable to open file";
exit(1); // terminate with error
}
while (inFile >> x) {
cout << "hi" << endl;
}
cout << "hsiwsdsc" << endl;
inFile.close();
什麼是文件的內容和你的輸出是什麼? – 2013-02-10 15:54:40
這和Xcode有什麼關係? – 2013-02-10 15:54:49
嘗試打印'x'來查看它是否讀取任何內容。 – jrok 2013-02-10 15:59:09