Array testgrades contains num_vals test scores. write a for loop that sets sumextra to the total extra credit recieved. full credit is 100, so anything over 100 is extra credit. ex: if testgrades = { 101,83,107,90}, then sumextra = 8, because 1+0+7+0 is 8.
i need help writing the solution