我正在尝试从.txt文件中读取行并使用std::cout
将其打印出来。我的代码发布在下面,但是在while循环期间当前没有将任何行传递给向量。我哪里出错了?
int main(int argc, const char * argv[]) {
std::ifstream input("input1.txt");//(argv[1]);
if (!input.good()) {
cerr << "Can not open the grades file "; //<< argv[1] << "\n";
return 1;
}
std::vector<string> art;
string x; // Input variable
// Read the scores, appending each to the end of the vector
cout << "Start While:"; //For Debugging Purposes
while (getline(input, x)) {
art.push_back(x);
}
for (int i=0; i<art.size(); i++) {
cout << art[i] << "\n";
}
return 0;
}
答案 0 :(得分:0)
原来Xcode很难。在移动了几个文件并在编译器中运行它之后就可以了。