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 trialDonni Honig
574 PointsAttempting the Challenge on Return Values
I'm attempting the Challenge on Return Values and the console keeps saying I'm missing semicolons,
Am I?
using System;
class Program
{
static double Multiply(double firstParam, double secondParam)
{
return (firstParam * secondParam);
}
static void Main(string[] args)
{
var double Num1;
var double Num2;
Num1 = Multiply(2.5, 2);
Num2 = Multiply(6, 7);
Console.WriteLine(Num1 * Num2);
}
}
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Donni Honig! Yes, and no. However, this would be the same error you would get if you attempted this in Visual Studio or any other compiler. The var
keyword is used when you don't want to specify a type and you want C# to figure out the type itself. The double
is explicitly setting the type to double
. You can't have both at the same time. It must either set the data type implicitly or explicitly.
Any variable that uses var
must receive an initial value at the time it is first declared. So where you have:
var double Num1;
var double Num2;
It's wanting:
double Num1;
double Num2;
Also note that the challenge is asking you to add the results of these two together, not multiply them. So in your final line where you have:
Console.WriteLine(Num1 * Num2);
It's expecting that to be:
Console.WriteLine(Num1 + Num2);
Hope this helps!
Donni Honig
574 PointsDonni Honig
574 PointsAh, thank you!