Re: [Tutor] File I/O help

2009-07-23 Thread Steve Willoughby
On Wed, Jul 22, 2009 at 10:48:49PM -0500, Chris Castillo wrote: > *I'm supposed to be reading in names a grades from a text file like so: > * > Chris > 100 > 89 > 76 > 0 My Spidey Senses are picking up "homework assignment", so I'll try to nudge you in a general direction without doing your work

[Tutor] File I/O help

2009-07-22 Thread Chris Castillo
*I'm supposed to be reading in names a grades from a text file like so: * Chris 100 89 76 0 Dave 56 45 30 23 10 0 Sara 55 76 78 60 0 *the 0 indicates that's the end of the student's grades and not an actual 0 number grade for the student. This is what my code looks like so far:* from myFunctions