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 trialkal alben-mccave
9,556 PointsC# code challenge return value
A good day can anyone assist me with this code challenge. thank you
using System;
class Program
{
static double Multiply(double firstParam, double secondParam)
{
return(firstParam * secondParam);
}
static void Main(string[] args)
{
Multiply(2.5, 2);
Multiply(6, 7);
Console.WriteLine (2.5, 2) + (6, 7);
}
}
3 Answers
KRIS NIKOLAISEN
54,971 PointsHere is a hint from the challenge itself:
In Main, you need to add the return values from the two calls to Multiply together: Multiply(2.5, 2) + Multiply(6, 7)
kal alben-mccave
9,556 PointsThanks
Ra Bha
2,201 PointsHello, I am good with everything up to the point in the code challenge referenced above until the instructions ask for:
add those together, and print the result. Multiply(2.5, 2) should return 5, and Multiply(6, 7) should return 42, so you should get a result of 47.
How do I print the result of the addition of the values returned from the two Multiply calls, and why?
I am not sure what to put in the statement with Console.WriteLine in the Multiply method.
Thanks!