find average , maximum , minimum, and sum of 3 numbers

To find the average, maximum, minimum, and sum of three numbers, you need to perform a series of simple calculations. Let's break down the steps:

Step 1: Input the three numbers (let's assume the numbers are A, B, and C).

Step 2: Calculate the sum by adding the three numbers together:
Sum = A + B + C

Step 3: To find the average, divide the sum by the total number of values (in this case, 3):
Average = Sum / 3

Step 4: To find the maximum number, compare the values of A, B, and C to determine which one is the largest:
Maximum = max(A, B, C)

Step 5: To find the minimum number, compare the values of A, B, and C to determine which one is the smallest:
Minimum = min(A, B, C)

By following these steps, you can easily calculate the average, maximum, minimum, and sum of three numbers.