CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: thepox

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    2,928

    Re: File I/O and While Statement

    I replaced my while loop with:

    while ( !num_list.eof())
    {
    count=0;
    while (count <= 50)
    {
    num_list >> number;
    sum += number;
    }
  2. Replies
    3
    Views
    2,928

    File I/O and While Statement

    I have an assignment due at 8:00PM. I've had a ton of work to do this week and haven't really got to learn the topic before the assignment. I'm just trying to get the points for the assignment and...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured