I've been trying to figure this out the last few days, but no luck. The objective is to find the sum, average, minimum, and maximum grades and display them.
Here is my code, everything except minimum, maximum and grade input seem to work
// Includes printf and scanf functions
#include <stdio.h>
int main(void) {
    unsigned int counter; // number of grade to be entered next
    int grade; // grade value
    int total; // sum of grades entered by user
    float average; // average of grades
    int maxi; // Max grade
    int mini; // min grade
    int i;
    int max;
    int min;
    maxi = 1;
    mini = 1;
    printf("Enter number of grades: "); // User enters number of grades
    scanf("%d", &counter); // Countss number of grades
    //scanf("%d%d", &min, &max);
    for (i = 1; i <= counter; i++) {
        printf("Enter grade %d: ", i); // User enters grade
        scanf("%d", &grade); // Counts grades
        //scanf("%d",&counter);
        if (grade < 0 || grade > 100) {
            printf("Please enter a number between 0 and 100!\n"); // Lets user know if input is invalid
            i--;
            break;
        }
        else {
            total = total + grade;
            average = (float)total / counter; // NOTE: integer division,    not decimal
        }
    }
    max = (grade < maxi) ? maxi : grade;
    min = (grade > mini) ? mini : grade;
    printf("Class average is: %.3f\n", average); // Displays average
    printf("Your maximum grade is %d\n", max); // Displays Max
    printf("Your minimum grade is %d\n", min); // Displays minimum
    printf("Sum: %d\n", total); // Displays total
}
Output:
Enter number of grades: 2
5
7
Enter grade 1: 4
Enter grade 2: 3
Class average is: 3.500
Your maximum grade is 3
Your minimum grade is 1
Sum: 7
For some reason when I start the program, I have to enter a few numbers, in this case 5 & 7 before it prompts me to "Enter grade" then from there it calculates everything. Also, it seems that the Maximum is always the last grade that I enter and shows 1 as the minimum when no where in the input is 1. I am supposed to use a conditional operator for the max/min, I tried looking it up and reading the book, but they just use letters like a,b,c, etc. Which just confused me so I'm not sure if I did it wrong.
Could that be what is messing everything up? If it isn't what am I doing wrong?
Another thing is I'm thinking I need a While loop if I want to make the counter have an input from 1-100, is that right?
Edit: just realized I had to remove the scanf for max and min. Taht's why I had to inptu 2 nubmers first
 
     
     
     
     
     
     
    