Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Basics Perfecting the Prototype Censoring Words - Looping Until the Value Passes

Ozzy Kratos
Ozzy Kratos
4,149 Points

Adding male/female differentiation to TreeStory.java

Hi,

I'm trying to find a way to print a specific line depending on the gender the user is entering.

For example, when the system will ask "What is your gender?" the last console print would change depending on the user's answer - console.printf("They are always %s %s.\n", adverb, verb);

So if I enter "male", it would print console.printf("He is always %s %s.\n", adverb, verb); and if I enter "female" it would print console.printf("She is always %s %s.\n", adverb, verb);

I hope the question is clear enough. Hope someone can help.

Thanks,

Oz

Simon Coates
Simon Coates
28,694 Points

If you can capture the gender as a string, the use a condition in conjunction with the string classes .equals method. (or do i misunderstand the question?)

1 Answer

You could do something like:

String userInput = Console.readLine("Are you male or female?");

if(userInput.equalsIgnoreCase("male"){
   // print this line of code
}
else{
  // print this line of code instead
}