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 Alfatih
Courses Plus Student 598 Pointswhere is the mistake please
line 6
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 */
if (lastName.charAt(0) < 'M') {
int line = 1;
} else {
int line = 2;
}
int line = 0;
return line;
}
}
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsThis issue is in Line 11, where you redefine line
to 0
, just before the return
int line = 0;
return line;
The int line = 0;
needs to be moved before the if
statement. Be careful to watch for the error "variable line is already defined in method
" caused by redefining int line
.
Ahmed Alfatih
Courses Plus Student 598 PointsAhmed Alfatih
Courses Plus Student 598 PointsThanks