// ~cs35/file_4.cpp

#include "CS35files.h"
//to introduce "rewind"

int main ()
{
	int count, number;
	double entry, max;

	
	cout <<"Enter the name of a file: ";
	cin >> name;
	
//add code!!
	
	cout << "There were "<<count<<" numbers in the file.\n";
	cout <<"The largest was "<<max<<"\n";
	
	cout <<"Which entry would you like to see?  Enter an integer from 1 to "
				<< count<<": ";
	cin >> number;
	
//add code!!

	cout <<"Entry number "<<number<<" is "<<entry<<endl;
	return 0;
}
	
	
	
	
