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 trialRussell Alson
Courses Plus Student 1,297 PointsString Equality challange
A explanation for my error would be great.
Thank you
// I have imported a java.io.Console for you, it is named console.
String firstExample = "hello";
String secondExample = "hello";
String thirdExample = "HELLO";
if (firstExample.equals(secondExample); {
console.printf("first is equal to second")
}
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHey Russell,
There are actually 2 errors in the code above. You have a misplaced semi-colon, and you are missing a closing parenthesis for the conditional statement. The semi-colon needs to end the statement, which in this case is the console.printf()
method. So, where you have the semi-colon, that is where you need a closing ) for the if
conditional.
You can compare your code to the code below to see where I mean.
if (firstExample.equals(secondExample)) {
console.printf("first is equal to second");
}
Keep Coding!
Russell Alson
Courses Plus Student 1,297 PointsRussell Alson
Courses Plus Student 1,297 PointsThank you Jason