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 trialEric Ruiz
12,595 PointsIn the third step of the challange, I'm having problems with the step one, even when its been left unchanged.
I can't finish the challange.
age = 21
days = (age*52*7)
estimate = round(days)
summary = "I am "+estimate+" days old!"
In the third step of the challange, I'm having problems with the step one, even when its been left unchanged.
1 Answer
boog690
8,987 PointsThe variable estimate is of type int. For step three, it asks that estimate be converted to type String before being concatenated into summary. So, for your answer, make sure to convert the variable estimate into a string.
Also, for added practice, try and use the "I am {} days old" string and the String.format() method. This practice will help you in the long-run.