
aaron quasius
260 PointsCannot figure out what is the issue with this.
Using the hints, and the directions given I either get the wrong result or an error. I dont know why
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)
}
}
1 Answer

Steven Parker
177,847 PointsYou're close! But the instructions say when you add together the two calls to "Multiply", you should then "print the result".
Just output the total and you should pass the challenge.
aaron quasius
260 Pointsaaron quasius
260 PointsI ended up getting it! I totally glanced over the print aspect of problem. Little did I know all I needed was a simple Console.WriteLine()