Recent content by uwp student

  1. U

    Comp Sci C++ question- turning scores to letter grades, and more

    I do not think a for loop will work because it then looks like this when it compiles 2 88 92 A's: 0 B's: 1 C's: 0 D's: 0 F's: 0 Total number of scores: 0 Total number of sections: 2 That's all the sections! Normal Termination. A's: 1 B's: 1 C's: 0 D's: 0 F's: 0 Total number of scores: 0 Total...
  2. U

    Comp Sci C++ question- turning scores to letter grades, and more

    it says "Error no value has been given to score"
  3. U

    Comp Sci C++ question- turning scores to letter grades, and more

    I do not understand your code. I am sorry for being difficult but this is only my second program and my first loop so I am having a lot of trouble understanding this
  4. U

    Comp Sci C++ question- turning scores to letter grades, and more

    #include <iostream> #include <iomanip> using namespace std; int main() { int score; // input variable int section = 0; int high_score = 0; // highest score of section int low_score = 0; // lowest score of section float average_section = 0; //...
  5. U

    Comp Sci C++ question- turning scores to letter grades, and more

    That is what I have been trying to do, I just do not know how to do that. (This is my first loop problem) So far I can get it to read the first number and that is all. But then it keeps reading it and will not stop until it says "Error, have exceed 10000 runs"
  6. U

    Comp Sci C++ question- turning scores to letter grades, and more

    Homework Statement We have multiple sections of a class for which we need to produce grading summaries by section. The grading summaries that we need are a count of how many students earned A’s, B’s, C's, etc., and the lowest, highest and average grade for each section. At the end of...
Back
Top