Develop a pseudocode algorithm that prompts the user to input his/her name and age. If the age

entered is less than 0 or greater than 125, the program should be terminated. The user has three
chances for entering the age. If after the third try the user is unsuccessful in entering an acceptable
age, print an appropriate error message and terminate the program. If a valid age has been entered
the program is to output the words "You can vote" if the age is 18 older and
"You are not allowed
to vote" if younger than 18. Please note that the pseudocode should successfully accept

It's Me Jazz

Nick R?

Sorry but I wolnt Be on Gmail Today Bc I got To school an get better grades lol

DONT bann be please Im gonna help People FR

To develop a pseudocode algorithm for this task, you can follow these steps:

1. Initialize a variable called "count" to keep track of the number of tries or chances.

2. Prompt the user to enter their name using an input statement and store it in a variable called "name".

3. Prompt the user to enter their age using another input statement and store it in a variable called "age".

4. Use a while loop to repeat steps 5-9 until the age entered is valid or the user runs out of chances.

5. Increment the "count" variable by 1.

6. Check if the entered age is less than 0 or greater than 125 using an if statement. If true, terminate the program.

7. Check if the "count" variable is equal to 3, indicating the user has reached the maximum number of tries. If true, print an error message and terminate the program.

8. Prompt the user again to enter their age. Repeat steps 5-9.

9. If the entered age is valid, use an if statement to check if the age is 18 or older. If true, print "You can vote". Otherwise, print "You are not allowed to vote".

Here is the pseudocode representation of the algorithm:

```
count = 0

print "Please enter your name:"
name = input()

while count < 3:
count = count + 1

print "Please enter your age:"
age = input()

if age < 0 or age > 125:
terminate program

if count = 3:
print "Error: Maximum number of tries reached."
terminate program

if age >= 18:
print "You can vote"
terminate program
else:
print "You are not allowed to vote"
terminate program
```

Please note that this is a pseudocode representation, and you would need to convert it into a programming language syntax of your choice to implement the algorithm.