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 trialBrendan Ballon
Courses Plus Student 2,728 PointsWhy isn't this code working?
I someone could please explain why this isn't working in a way that i could under stant, that would be great.
string heightInput = "168";
int height;
height = height + 10;
height = int.Parse(heightInput);
1 Answer
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsThe order matters because the program read from top to buttom
- Parse heightInput to an integer so that height = 168
- Then add 10 to height
but your order is
- Setting **height* to 10
- Then parse heightInput to an integer and then set height to 168
string heightInput = "168";
int height; // here height is = 0
height = height + 10; // now you're adding 10 to height
height = int.Parse(heightInput); // here you set height to 168
Brendan Ballon
Courses Plus Student 2,728 PointsBrendan Ballon
Courses Plus Student 2,728 PointsThanks! that makes a lot more sense!