Recent content by uwp student
-
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...- uwp student
- Post #10
- Forum: Engineering and Comp Sci Homework Help
-
U
Comp Sci C++ question- turning scores to letter grades, and more
it says "Error no value has been given to score"- uwp student
- Post #9
- Forum: Engineering and Comp Sci Homework Help
-
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- uwp student
- Post #7
- Forum: Engineering and Comp Sci Homework Help
-
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; //...- uwp student
- Post #5
- Forum: Engineering and Comp Sci Homework Help
-
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"- uwp student
- Post #3
- Forum: Engineering and Comp Sci Homework Help
-
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...- uwp student
- Thread
- C++ Grades Turning
- Replies: 13
- Forum: Engineering and Comp Sci Homework Help