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 trialMukhtar Al Maden
Courses Plus Student 1,415 Pointswhat should I do to pass this?
I couldn't pass I tried several different things and ran out of ideas
string heightInput = "168";
int.Parse.heightInput= 168;
int height = int.Parse;
1 Answer
Fredrik Rönnehag
2,342 PointsYou're close.
You need to parse the string heightInput to convert it to an integer.
Then store that int in an int variable named height.
int.Parse() is a method that you can add a parameter to.
string heightInput = "168";
int height = int.Parse(heightInput);
// Declaring the new int height, then initialize by the = sign, making it equal to the value from the int.Parse(heightInput) method.
// Sidenote: If the string isn't parseable by not containing numbers to form an int. The program will crash.