How do you go around this question? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

How do you go around this question?

Write a program that asks for the user's name and then writes that name to the monitor with either "Ms." or "Mr." in front, depending if the name is for a female or male. Assume that the only female names are ● Amy ● Buffy ● Cathy and that the only male names are ● Elroy ● Fred ● Graham All other names will be echoed without a title. The program continutes looping until the user hits "enter" without first typing a name. C:\>java Title Enter a name: Amy Johnson Ms. Amy Johnson Enter a name: Fred Smith Mr. Fred Smith Enter a name: Zoltan Jones Zoltan Jones Enter a name:

25th Feb 2020, 6:51 AM
Agaba Godwin
Agaba Godwin - avatar
1 Answer
+ 4
You need to take a name from the user, and compare it to the male and female names and take appropriate actions.
25th Feb 2020, 7:03 AM
Adam McGregor