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 trialIsabelle Oneal
14,267 PointsCreate an integer that stores "number of people" ( Use camel case). Set the value to 3.
i put:
int number of people = 3;
7 Answers
ivomiranda
30,286 PointsNot really sure what your question is... I assume you are referring to the code challenge where they want you to use camel case for your variable names. You should use the following:
int numberOfPeople = 3;
Derrick Lyons
1,915 PointsThis helped me too. :)
LEUNG ANDY
462 Pointshelped me as well
LEUNG ANDY
462 Pointshelped me as well
glen turner
509 PointsSo making the word "people" uppercase is what I was doing wrong I guess.
Tommie McCoy
176 Pointsthanks helped me too, I don't understand why these words are mashed together here but not in earlier task?
Isabelle Oneal
14,267 Pointsit worked thank you! so much!
ivomiranda
30,286 PointsGlad to help :) Please try to be a little more specific when asking for help. (you will get more and better answers)
Tinashe Tinashe
2,308 PointsTinashe Tinashe
2,308 PointsCreate an integer that stores "number of people" ( Use camel case). Set the value to 3.