The Romance World Cruise Line provides special gifts for passengers who are newlyweds, as well as for those who have been married more than 40 years. Design a pseudocode for a program that accepts a couple's last name, ship cabin number, and number of years married. Display a couple's data with the message "Newlywed Gift" if the couple has been married a year or less, "Deluxe Anniversary Package" if the couple has been married 40 years or more, and no message if the couple has been married between 2 and 39 years.

Need a start to this please? Super confused

sheesh.

read name,cabin,years
print name,cabin,years
if years < 2, print "Newlywed Gift"
if years >= 40, print "Deluxe Anniversary Package"

What's the rest of the the pseudocode

Sure! I can help you with that. To design the pseudocode for this program, we can start by breaking down the problem into smaller tasks and then writing the code for each task. Here's an example pseudocode to get you started:

```
1. Start the program.

2. Prompt the user to enter the couple's last name.
- Use the input function to get the last name and store it in a variable.

3. Prompt the user to enter the ship cabin number.
- Use the input function to get the cabin number and store it in a variable.

4. Prompt the user to enter the number of years married.
- Use the input function to get the number of years married and store it in a variable.

5. Check if the number of years married is equal to or less than 1.
- If true, display "Newlywed Gift".

6. Check if the number of years married is greater than or equal to 40.
- If true, display "Deluxe Anniversary Package".

7. If none of the above conditions are met, display nothing.

8. End the program.
```

This is a basic outline of the pseudocode. You can now convert this pseudocode into the programming language of your choice and add the necessary code to implement it. Let me know if you need further assistance with the implementation!