Help with c++ grading program.

It needs to be a grading program that must find the average of the class as long w/ each student.?

  • it needs to be a grading program that must find the average of the class as long w/ each student. thanks 4 your help. :) i know how to do the math but not the code

  • Answer:

    Do you have Excel, if you do, then Excel can do that. I think the formulas are self explanatory but if it isn't obvious to you, a Google search should turn up on how to do this in Excel.

doctor_c... at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

Excel can do that. the formulas are self explanatory.

Subrata

Are you looking for a grading program? Have you tried gradebook or Classroom EZ? Check google.

Wondering

HERE IT IS AGAIN! REMEMBER TO GIVE ME MY 10 POINTS. You didnt specify what language. Here it is in Java. (oh and you can change grades in the array, and change the index depending on how many grades you are going to use. GOOD LUCK!! I want my 10points if this helps!! ______________________________... class grades { public static void main(String[] args) { int[] grade ={45, 65, 95, 29, 71, 62, 47, 83, 68, 12, 88, 59}; int count = 0, count1 = 0 , count2 = 0, count3 = 0; for (int i = 0; i <= 11; i++){ if (grade[i] > 80) count = count + 1; else if (grade[i] > 60) count1 = count1 + 1; else if (grade[i] > 40) count2 = count2 + 1; else count3 = count3 + 1; } System.out.println("\nGrades in the range 81 to 100 = " +count); System.out.println("Grades in the range 61 to 80 = " +count1); System.out.println("Grades in the range 41 to 60 = " +count2); System.out.println("Failing grades = " +count3); } } reference materials me. My 2nd hw assignment in a Java Class

NYgirl22

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.