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 - Using String Equality

Lorin Min
Lorin Min
423 Points

Why does "age" needs both "int" and "if", while "noun" only needs if?

Is it because the former uses the >, < and the latter uses equals?

1 Answer

Daniel Vargas
Daniel Vargas
29,184 Points

You don't have to declare a new variable to check for the age, however it's better if you do it because it's easier to read the code and access the age (as an int) later if you need it, otherwise you have to convert the ageAsString everytime.

But this would work too:

String ageAsString = console.readLine("How old are you?  ");      
      if (Integer.parseInt(ageAsString) < 13) {
        //Insert exit code
        console.printf("Sorry you must be at least 13 to use this program.\n");
        System.exit(0);
      }