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 trialTom Schinler
21,052 PointsConference Registration Assistant need help.
I can not figure out why my code won't pass. The preview button will not work, so I cannot see the compiler error.
Original Challenge Code:
public class ConferenceRegistrationAssistant {
public int getLineFor(String lastName) {
/* If the last name is between A thru M send them to line 1
Otherwise send them to line 2 */
int line = 0;
return line;
}
}
My code:
public class ConferenceRegistrationAssistant {
public int getLineFor(String lastName) {
/* If the last name is between A thru M send them to line 1
Otherwise send them to line 2 */
private String mLine1;
private String mLine2;
char lineSort = lastName.charAt(0);
if (lineSort <= 'm' || 'M') {
lineSort += mLine1;
} else {
lineSort += mLine2;
}
int line = 0;
return line;
}
}
2 Answers
Craig Dennis
Treehouse TeacherHey Tom!
Looks like you might be over thinking it. You definitely have the two key points I wanted you to take away. So let me give you this hint: All you need to do is if the first letter of the last name is less than 'M' set line
equal to 1, otherwise set it to 2. Remember to return line
. The method is expecting an int
to be returned.
Also, for now, keep the private accessors only up at the class level, leave them out of methods. They don't make much sense in there, and probably are causing you problems.
Good luck!
Tom Schinler
21,052 PointsThanks again Craig.