我想遍历文件并打印所有字符串。例如,该文件包含:
a
1
2
10
a1
1
b
将输出:
a
a1
b
我这样写我的代码:
int main(){
ifstream stream;
stream.open("example.txt");
string temp;
while (getline(stream, temp)){
cout<<temp<<endl;
int n;
while(stream>>n){}
}
}
这个程序在线打印“a”和“a1”。和建议?