Write a pseudocode program that asks the user for an integer between 1 and 12. The program is to calculate the times table for that number. So for example, if the user enters a 2, then the program has to calculate 2x1 and display the answer, then 2x2 and display the answer, up to 2x12. Write the program using any type of loop you would like.

Design a program that asks for the length and width of two rectangles. The program should tell the user which rectangle has the greater areas are the same.

Here's a pseudocode program that calculates the times table for a given number using a for loop:

1. Start by asking the user to input an integer between 1 and 12.
2. Read the user's input and store it in a variable called "number".
3. Create a for loop that runs from 1 to 12 (inclusive).
a. Within the loop, multiply the current iteration number with the "number" variable and store the result in a variable called "result".
b. Display the calculation as a formatted string: "number x iteration = result".
4. End the loop.
5. Print a message to signify the end of the times table calculation.

Here's the pseudocode in full:

```
Display: "Enter an integer between 1 and 12:"
Read input into the variable "number"

For "iteration" from 1 to 12
Set "result" to "number" multiplied by "iteration"
Display: "number x iteration = result"
End For

Display: "Times table calculation for number is complete."
```

Sure! Here's a pseudocode program that calculates the times table for a number entered by the user using a FOR loop:

1. Display the message: "Enter an integer between 1 and 12:"
2. Read the user's input and store it in a variable called 'number'
3. Initialize a variable 'i' as 1
4. Check if 'number' is between 1 and 12 (inclusive)
5. If not, display an error message and terminate the program
6. If 'number' is valid, execute the loop:
- Repeat the following steps until 'i' is greater than 12:
- Calculate the product of 'number' and 'i' and store it in a variable called 'result'
- Display the equation 'number' + " x " + 'i' + " = " + 'result'
- Increment 'i' by 1
7. End the program

Here's the pseudocode in action:
```pseudocode
Display "Enter an integer between 1 and 12:"
Read number

if number < 1 or number > 12 then
Display "Invalid input. Please enter an integer between 1 and 12."
Terminate the program
end if

for i = 1 to 12 do
result = number * i
Display number + " x " + i + " = " + result
end for
```

This pseudocode program will ask the user for an integer between 1 and 12, and then use a FOR loop to calculate and display the times table for that number from 1 to 12.