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 trialahmed alghafli
3,446 PointsAdd an if statement that checks to see if firstExample is equal to secondExample. If it is, print out "first is equal to
What is wrong ?
// I have imported a java.io.Console for you, it is named console.
String firstExample = "hello";
if (firstExample.equals(SecondExample)) {
console.printf("First is equal to second");
}
String secondExample ="hello";
String thirdExample = "HELLO";
3 Answers
Dane Parchment
Treehouse Moderator 11,077 PointsYou capitalized the variable SecondExample (Remember variables name are case sensative, your are referring to a variable that currently doesn't exist) first of all, and second of all you should create and initiate the variables before the actual if statement so it should be like:
String firstExample = "hello";
String secondExample = "hello";
String thirdExample = "HELLO";
//IF STATEMENT BELOW THIS
Hope that helps.!
Geoff Parsons
11,679 PointsYou're using the variable secondExample
before it has been declared. You'll need to move your if statement below the variable declarations. Also you've capitalized "SecondExample", it should be "secondExample".
ahmed alghafli
3,446 PointsI fixed what you said but it still tell me it is wrong
Umair Qadir
352 PointsAhmed,
It needs to be in this format. It worked for me! Make sure secondExample has no quotations in it. if(firstExample.equals(secondExample)) { console.printf("first is equal to second"); }