Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Joseph Fox
3,648 Pointsusing System; class Program { static double Multiply(double one, double two) { return one * two;
so this is right and should work but the test window keeps throwing errors what do they want ?
using System;
class Program
{
static double Multiply(double one, double two)
{
return one * two;
}
static void Main(string[] args)
{
double total = Multiply(2.5 , 2);
Console.WriteLine(total);
double again = Multiply(6 , 7);
Console.WriteLine(again);
}
}
2 Answers

Steven Parker
216,135 PointsThe instructions ask for "a Multiply
function that accepts two parameters, multiplies them together, and passes the result to Console.WriteLine." But this one returns the result rather than displaying it.
The new function does not need to return anything (it can be "void").

Joash Nyabuti
514 Pointsstatic void Multiply(double one, double two) { //return one * two; instead print the value
Console.WriteLine(one*two);
}