Write a program that will ask a user how many numbers they would like to check. Then, using a for loop, prompt the user for a number, and output if that number is divisible by 3 or not. Continue doing this as many times as the user indicated. Once the loop ends, output how many numbers entered were divisible by 3 and how many were not divisible by 3.

Hint: For a number to be divisible by 3, when the number is divided by 3, there should be no remainder - so you will want to use the modulus (%) operator.

Hint: You will need two count variables to keep track of numbers divisible by 3 and numbers not divisible by 3.

Sample Run 1
How many numbers do you need to check? 5
Enter number: 20
20 is not divisible by 3.
Enter number: 33
33 is divisible by 3.
Enter number: 4
4 is not divisible by 3.
Enter number: 60
60 is divisible by 3.
Enter number: 8
8 is not divisible by 3.
You entered 2 number(s) that are divisible by 3.
You entered 3 number(s) that are not divisible by 3.
Sample Run 2
How many numbers do you need to check? 3
Enter number: 10
10 is not divisible by 3.
Enter number: 3
3 is divisible by 3.
Enter number: 400
400 is not divisible by 3.
You entered 1 number(s) that are divisible by 3.
You entered 2 number(s) that are not divisible by 3.
Benchmarks
Prompt the user to answer the question, “How many numbers do you need to check? “
Create and initialize two count variables - one for numbers divisible by 3 and one for numbers not divisible by 3.
Based on the previous input, create a for loop that will run that exact number of times.
Prompt the user to "Enter number: "
If that number is divisible by 3, output “[number] is divisible by 3.”
Update the appropriate count variable.
Or else if the number is not divisible by 3, output “[number] is not divisible by 3.”
Update the appropriate count variable.
Output “You entered [number] number(s) that are divisible by 3.”
Output “You entered [number] number(s) that are not divisible by 3.”

To write a program that will ask the user how many numbers they would like to check, and then determine if each number is divisible by 3, you can follow these steps:

1. Prompt the user to enter the number of numbers they want to check.
2. Create two count variables, `divisibleCount` and `notDivisibleCount`, and initialize them to 0.
3. Use a for loop to iterate the number of times specified by the user's input.
4. Inside the loop, prompt the user to enter a number.
5. Use the modulus operator `%` to check if the number is divisible by 3. If the modulus is 0, it means the number is divisible by 3.
6. If the number is divisible by 3, increment the `divisibleCount` variable and output a message indicating that the number is divisible by 3.
7. If the number is not divisible by 3, increment the `notDivisibleCount` variable and output a message indicating that the number is not divisible by 3.
8. After the loop ends, output the values of `divisibleCount` and `notDivisibleCount` variables.

Here's an example implementation in Python:

```python
numToCheck = int(input("How many numbers do you need to check? "))
divisibleCount = 0
notDivisibleCount = 0

for i in range(numToCheck):
number = int(input("Enter number: "))
if number % 3 == 0:
divisibleCount += 1
print(f"{number} is divisible by 3.")
else:
notDivisibleCount += 1
print(f"{number} is not divisible by 3.")

print(f"You entered {divisibleCount} number(s) that are divisible by 3.")
print(f"You entered {notDivisibleCount} number(s) that are not divisible by 3.")
```

By following these steps, you can create a program that prompts the user for the number of numbers to check, checks if each number is divisible by 3, and outputs the counts of divisible and non-divisible numbers.