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

when i execute the code for the following the console is giving me 5 errors, i followed the steps as per the video.

1 Answer

Steven Parker
Steven Parker
231,007 Points

Line 16 should be a conditional instead of an assignment:

     int age= ( age < 13) {  // original
     if (age < 13) {         // fixed

And line 18 has the characters of the newline escape sequence in reverse order:

         console.printf("Sorry you must be atleast 13 years old to use this program.\n");  // fixed
//                                                                     newline code ^^