Hey guys I'm taking a computer science 1 course and this problem is killing me.
I just have no idea on how to start this.
(a) Write a C++ program that reads in 20 SAT scores and prints all the scores,
indicates the highest score, the second highest score and number of scores
in each of the following categories:
1) scores>= 700
2) 600<=scores<700
3) 500<= scores<600
4) 400<=scores<500
5) 300<=scores<400
6) 200<=scores<300
Make up your own data.
I was thinking of using a for loop.
for(counter=1;counter<=20;counter++)
To read in the 20 SAT scores but I'm just stuck, please help!
Can you give me an idea of what your teacher is expecting of you. I can give you a better idea of how to go about this if I know what level of skill you are coding on. And example of some work would do just fine.
can you explain a bit more what your application is supposed to do. Your first post is still confusing me. I can help you figure this out very easy once I understand the question more.
The program is suppose to ask the user to input 20 SAT scores and then prints all the scores and indicate which score is the highest score and the second highest score in each category. Lets say they put 633,244,622,600,440 it should show like