Answer :
Answer:
DECLARE number
SET total to 0
SET average to 0
FOR i=1 to 10
SET number to a random number between 1 to 12
COMPUTE total += number
END FOR
COMPUTE average = total / 10
PRINT average
Explanation:
Declare number
Initialize the total and average
Create a for loop that iterates 10 times. Inside the loop, generate a random number between 1 to 12 and set it to the number variable
Add the number to the total (cumulative sum)
When the loop is done, calculate the average - divide the total by 10
Print the average