Originally Posted by
Actinistia
Thanks for the previous suggestion! In my first post, I gave a link to another thread I made which had the actual requirements of the program on it. Basically the program is suppose to create the best possible percentage for a student by dropping 3 assignment scores. The score array and max array each store a score (e.g. 35 out of 40 possible points, score[i] stores the 35 and max[i] stores the 40). I had thought about putting them both into an array having the score and max alternate but wasn't sure if it was better to do. I felt that working with 2 separate arrays was easier to work with. Anyways, thanks again!
Well, do whatever fits into your head. But just a tip- you might want to stop to think about how you'd do this "by hand" without a program. Given a stack of grades, how would you figure out which three to drop? Write out basic instructions, pretend you're writing them for a really dumb friend who needs to do this. When you have that written out, you'll have a basic algorithm that should be pretty easy to translate into code.