Skip to content

Instantly share code, notes, and snippets.

Created October 13, 2013 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6956821 to your computer and use it in GitHub Desktop.
Save anonymous/6956821 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main()
{
// Variable Declarations
ifstream infile;
ofstream outfile;
int numStudents = 0;
string filename;
string studentName;
string firstStudent;
string lastStudent;
// Ask user for name of file, open and test file.
cout << "Enter the name of the file with your student's names.\n";
cin >> filename;
cout << endl;
infile.open(filename.c_str());
if (infile.fail())
{
cout << "Sorry, file " << filename << " was not found.\n";
cout << "\nEnding program...\n\n";
return 1;
}
// File is open for reading.
cout << "Reading file " << filename << endl;
if (infile >> studentName )
{
studentName = firstStudent = lastStudent;
while ( infile >> studentName )
{
cout << studentName << endl;
numStudents++;
}
cout << "There are " << numStudents << " students in line" << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment