Error kasi naglagay ka na ng value sa parameter mo.
Remove these:
length =5.4;
width = 2.3;
length = Convert.ToDouble(Console.ReadLine());
width = Convert.ToDouble(Console.ReadLine());
Change it with this:
double length = Console.ReadLine();
double width = Console.ReadLine();