first thing u need to fix is your badly laid out post. edit it and post code your code in code tags. and use some indentation in your code for better readability.
Which calculation, specifically? I would check over your formulas, taking care to respect order of operations and such. Also, your quiz loop only reads in a bunch of data, overwriting the previous input as it does so.
It is probably integer division; instead of storing the input as int's, store it as a double. As it is, when you enter 526 and 580, for example, it divides 526 / 580 = 0.9069 which is truncated to 0.
I see you use quizpoints on line 56 above, but where is it initialized? This will cause an error if I run it in VC++, so how are you getting any result at all?
Your for loop looks strange. It looks like it is trying to loop ten times to record quiz information, but doesn't because it is looping on quiz, a variable you use for input inside the loop. It seems you are asking for total information so I don't even see why you have a loop in the first place.