This is what I have so far, I'm using pseudo "code".
class averageGrades main() num maxGrades = 5 num count[maxGrades] num index = 1 num sum = 0 output “Welcome to the Grade Average Program” while index <= maxGrades count[index] = 0 index = index + 1 endWhile index = 1 output “Please enter one of your test grade: ” input count[index] while count[index] >= 0 sum = count[index] + sum output “Please enter another test grade: ” input count[index] endWhile average = sum/(index - 1) output “You grade average is: ” average return endClass
Thanks,
-=wolfman


Sign In
Create Account


Back to top









