I need help with:
*the code for y/n and entering a 0 or 10.
* and how do I switch from lowest to highest to highest to lowest?
Problem:
Set up a grading program. The program should allow the user to enter grades from the keyboard until a 0 is entered OR 10 grades have been entered. The program should then sort the grades in order of highest to lowest, print the grades in sorted order, and finally print the average grade.
Process:
- Display a message on the screen asking the user if he/she wants to average grades. If the answer is 'y', allow the user to enter grades until a 0 is entered or 10 grades have been entered.
Load the data given into an array for later use.
After the user enters a 0 to quit, sort the array from largest to smallest. Average the grades and print the grades in sorted order with the average (precise to 2 decimal places) last:
Allow the process to be repeated until the user enters 'n' to quit.define NUMGRADES 10int main()
{
float grades[NUMGRADES] = {0.0};
float total = 0.0,
input = 0.0,
average = 0.0;
int gradecount = 0,
i = 0;printf( "Welcome to the automatic grading system:\n ");
printf( "Do you want to average a student's grade? (y/n)\n ");while (gradecount < NUMGRADES)
{
printf ("Enter a grade, 0 to quit: ");
scanf ("%f", &input);if (input < 0)
{
break;
}
else
{
grades[gradecount] = input;
total += input;
gradecount++;
}
}printf("Grades entered: \n");
for (i = 0; i < gradecount; i++)
{if (grades[i] < average)
{
printf("* %5.2f\n", grades[i]);
}
else
{
printf(" %6.2f\n", grades[i]);
}
}
average = total/gradecount;
printf("The average grade is: %.2f\n", average);getchar();
system("pause");
return 0;
}