154k views
1 vote
Write a program that first asks the user which language they speak: English or Pig Latin. The rest of the dialog must be in that language.

Read online about how to convert English to Pig Latin and vice-versa
a. DO NOT do any conversion functions between English and Pig Latin. Instead write and hardcode the messages in each language yourself.
b. DO NOT do any conversion functions between English and Pig Latin. Instead write and hardcode the messages in each language yourself.
c. DO NOT do any conversion functions between English and Pig Latin. Instead write and hardcode the messages in each language yourself.
d. I wrote it 3 times, so hopefully you will get the message. If you create any conversion functions between English and Pig Latin, you will LOSE POINTS.
e. Then give an introduction and ask them their name and respond with a hello message in the correct language. Do all this properly according to the principles of the Strategy Pattern.

1 Answer

6 votes

Final answer:

To implement the strategy pattern in a language conversion program, you can define two strategies: one for English and one for Pig Latin. Each strategy will contain the hardcoded messages in the respective language. The program should first ask the user to choose the language and then create an instance of the corresponding strategy.

Step-by-step explanation:

Strategy Pattern in Language Conversion Program

To implement the strategy pattern in a language conversion program, you can define two strategies: one for English and one for Pig Latin. Each strategy will contain the hardcoded messages in the respective language. The program should first ask the user to choose the language and then create an instance of the corresponding strategy. After asking for the user's name, the program can use the strategy to greet the user in the chosen language.

Example:

  1. User chooses English
  2. Program creates an instance of EnglishStrategy
  3. Program asks for user's name
  4. Program uses EnglishStrategy to say 'Hello, [user's name]' in English

User JasonD
by
7.9k points