#include #include #include using namespace std; int main() { ifstream thePoem; string word; thePoem.open("ocap.txt"); for(thePoem >> word; thePoem; thePoem>>word) { cout << word << endl; } /* thePoem >> word; while(thePoem) { cout << word << endl; thePoem >> word; } */ thePoem.close(); return 0; }