Using Scratch program, I am having trouble with the question. I think I need to use my block for this question. Please show me the image of the Scratch in order to get the answer.
Using a Scratch program, this question asks the user to enter a list of integers and stores the entered numbers in a list. After the user has finished entering the list, the program goes back through the created list to count the number of integers in the list that are multiples of 4 or less than -8. Then the program displays the count to the user.
For example, if the user enters the list shown below, the output is 5. This is an example only of what the program should produce. The list depends on inputs from the user: 57, 12, -9, 0, -25, 35, 47, 3, 7, -17, -2, 29.
The most important is that the program performs the required count only after all of the numbers have been entered into the list. That is, the user enters all of the numbers into the list first, and then the program proceeds to the count by going back through the list.