Obtain two numbers from the keyboard and determine and display which (if either) is the larger of the two numbers using pseudocode

START

INPUT num1
INPUT num2

IF num1 > num2
DISPLAY "num1 is larger than num2"
ELSE IF num2 > num1
DISPLAY "num2 is larger than num1"
ELSE
DISPLAY "Both numbers are equal"

END

Here's the pseudocode to obtain two numbers from the keyboard and determine and display which is the larger of the two numbers:

1. Prompt the user to enter the first number.
2. Read and store the first number.
3. Prompt the user to enter the second number.
4. Read and store the second number.
5. Check if the first number is greater than the second number.
- If true, display "The first number is larger."
- If false, check if the second number is greater than the first number.
- If true, display "The second number is larger."
- If false, display "Both numbers are equal."

Here's the pseudocode in a structured format:

```
1. Prompt user for first number
2. Read and store first number
3. Prompt user for second number
4. Read and store second number
5. If first number > second number, then
Display "The first number is larger"
6. Else if second number > first number, then
Display "The second number is larger"
7. Else
Display "Both numbers are equal"
```

To obtain two numbers from the keyboard and determine which one is the larger one, you can use the following pseudocode:

1. Prompt the user to enter the first number.
2. Read and store the first number.
3. Prompt the user to enter the second number.
4. Read and store the second number.
5. Compare the two numbers.
6. If the first number is greater than the second number, then
1. Display "The first number is larger."
7. Otherwise, if the second number is greater than the first number, then
1. Display "The second number is larger."
8. Otherwise,
1. Display "Both numbers are equal."

Here's the pseudocode example:

```
Display "Enter the first number:"
Read firstNumber

Display "Enter the second number:"
Read secondNumber

If firstNumber > secondNumber Then
Display "The first number is larger."
Else If secondNumber > firstNumber Then
Display "The second number is larger."
Else
Display "Both numbers are equal."
End If
```

Keep in mind that pseudocode is not a specific programming language, but rather a way to represent the logic of a program in a simplified and readable format. You can easily convert this pseudocode into your preferred programming language.