Answered step by step
Verified Expert Solution
Link Copied!

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 vals. Please help me figure out what is going wrong with the following:

#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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Essential Data Protection For Estate Agencies In Singapore 2024

Authors: Yang Yen Thaw Yt

1st Edition

B0CQK79WD3, 979-8872095392

More Books

Students also viewed these Databases questions