Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to read numbers from text file into a vector in C++

1 Answer

0 votes
#include <iostream>
#include <fstream>
#include <vector>
#include <string>

using std::cout;
using std::endl;
using std::string;
using std::vector;

void readFile(const string &fileName, vector<int>& vec)
{
	std::ifstream ifs;

	ifs.open(fileName.c_str());
	if (ifs.fail()) {
		throw "file error";
	}

	int n;
	while (ifs >> n) {
		vec.push_back(n);
	}

	if (ifs.eof()) {
		ifs.close();
	}
	else {
		ifs.close();
		throw "read file error";
	}
}

int main()
{
	vector<int> vec;

	try
	{
		readFile("d:\\data.txt", vec);

		for (size_t i = 0; i < vec.size(); i++) {
			std::cerr << vec[i] << " ";
		}
		cout << endl;
	}
	catch (char *s) {
		cout << s << endl;
	}

	return (0);
}


/*
run:

12 13 65 98 1001

*/

 



answered Jun 4, 2018 by avibootz

Related questions

1 answer 134 views
1 answer 151 views
1 answer 136 views
1 answer 304 views
1 answer 225 views
1 answer 237 views
1 answer 230 views
...