Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I need to read in a non-empty .txt file of numbers (ints), arranged 1 per line, into a C++ vector vals. Please help me figure
I need to read in a non-empty .txt file of numbers (ints), arranged 1 per line, into a C++ vector
#include#include #include #include #include using namespace std; int main() { vector vals; int temp; ifstream fin; fin.open("Test.txt"); // Read file into vector while(!fin.eof()) { fin >> temp; vals.push_back(temp); } // Output vecotr to console for (int i = 0; i < vals.size(); i++) { cout << vals.at(i) << endl; } fin.close(); return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started