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

Search:

Type: Posts; User: Zeveso

Search: Search took 0.01 seconds.

  1. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    @Joeman

    You are right... will finish this and check all of it out. I was not trying to build an application to use it, but trying to apply what I thought I had learned. At least this proved one...
  2. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    Ok, you taught me a couple things for sure. Must say... this was a good learning / wakeup exercise for me. Still not there yet. Working on it, but you did explain many things for me very well.

    So...
  3. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    ok, first of all... I am learning this on my own... this is not for school... and yes don't give me the answer... but give me what I need to learn... like an example... when you give me the answer I...
  4. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    ok, now i have gotten the errors down by about 1/4 or so...

    Errors:

    root@bt:~/gradesystem# make gradeSystem
    g++ gradeSystem.cpp -o gradeSystem
    gradeSystem.cpp: In function 'void...
  5. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    Thanks, will do. I noticed that the opening of the file, writing of the variable, and closing of the file were messed up. I just figured out how to fix it and now it is fixed. Will do that now. Thank...
  6. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    Ok, I think i got those changes right... but still the program is no where near runable

    Current Errors...

    gradeSystem.cpp: In function 'int findLetter(int, char)':
    gradeSystem.cpp:17: error:...
  7. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    i made comments, but ok... let me try again...


    for ( gradeNumber; canWe == true; gradeNumber++; ){
    cout << "Please submit the next grade." << endl << "Grade: ";
    cin >> submitAmount;
    ...
  8. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    I thought that it would first look at all the things above main() and then start the program. So long as it was above main then I would be fine. I will change that.

    What I was trying to do was get...
  9. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    Suppose to be a "D", but have not gotten there... just trying to get it to compile. Haha...
  10. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    #include <iostream>
    #include <fstream> // open, read, and write files

    //for time
    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>

    using namespace std;
  11. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    I am gonna be honnest with you, that makes no sense... i don't see how that would even work... much less help me
  12. Replies
    36
    Views
    15,865

    Re: Simple GradeSystem

    thank you all so far, made changes

    Errors:

    root@bt:~/gradesystem# make gradeSystem
    g++ gradeSystem.cpp -o gradeSystem
    gradeSystem.cpp: In function 'void writeGrade(int, int)':...
  13. Replies
    36
    Views
    15,865

    Simple GradeSystem

    Hello,
    New here and hope to stay. Anyways...

    I have started back with C++ and wanted to see how much I remembered. So please tell me what I am doing wrong. I am on linux at the moment and...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured