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 trialAdam Ramirez
267 Pointsint addtwo(a, b){ return a +b ; }
What am i doing wrong?
int addtwo (a, b){
return float a + b;
}
4 Answers
Ricardo Hill-Henry
38,442 PointsFirst, if you're going to return a float you have to specify the function as type float. Next, specify the type of your parameters.
float addTwo(float a, float b){
return a + b;
}
Holger Liesegang
50,595 PointsHi Adam!
You have to use a float instead of an integer as the return value (float addTwo
), the function has to be named "addTwo" (you wrote addtwo), the type of the arguments is missing (float a, float b
) and you don't need the float
in the return statement.
float addTwo(float a, float b) {
return a + b;
}
Adam Ramirez
267 PointsThank you both
Adam Ramirez
267 PointsSpoke to soon. Im still receiving an error.....grhhh
Adam Ramirez
267 PointsOk. found out (addT<----wo) function name is case sensitive!