public static void Main()
Console.WriteLine("Please enter the length of the patio you would like in feet: ");
string strLength = Console.ReadLine();
double dLength = Convert.ToDouble(strLength);
Console.WriteLine("Invalid number entered.");
Console.WriteLine("Please enter the width of the patio you would like in feet: ");
string strWidth = Console.ReadLine();
double dWidth = Convert.ToDouble(strWidth);
Console.WriteLine("Invalid number entered.");
Console.WriteLine("Please enter the depth of the patio you would like in feet: ");
string strDepth = Console.ReadLine();
double dDepth = Convert.ToDouble(strDepth);
Console.WriteLine("Invalid number entered.");
dArea = dLength * dWidth;
Console.WriteLine("Total area = " + dArea + " sqft.");
dVolume = dLength * dWidth * dDepth;
Console.WriteLine("Total volume = " + dVolume + " cubic feet.");
dAmountOfTrips = Math.Ceiling(dVolume / dBuggyHold);
Console.WriteLine("Total amount of trips required = " + dAmountOfTrips);
double dTotalPouringTime;
dTotalPouringTime = Math.Ceiling(dTimePerTrip * dAmountOfTrips);
Console.WriteLine("Estimated required time to pour concrete = " + dTotalPouringTime + " minutes.");
Console.WriteLine("What type of decorative finish would you like: Flat, Broom, or Stamped?");
string strFinishType = Console.ReadLine();
dFlatApply = dFlatTime * dArea;
Console.WriteLine("This flat finish type will require " + dFlatApply + " minutes of additional time.");
double dTotalTime1 = iSetUp + iCleanUp + dFlatApply + dTotalPouringTime;
Console.WriteLine("The total estimated time required will be " + dTotalTime1 + " minutes.");
dBroomApply = dBroomTime * dArea;
Console.WriteLine("This broom finish type will require " + dBroomApply + " minutes of additional time.");
double dTotalTime2 = iSetUp + iCleanUp + dBroomApply + dTotalPouringTime;
Console.WriteLine("The total estimated time required will be " + dTotalTime2 + " minutes.");
double dStampedTime = .2;
dStampedApply = dStampedTime * dArea;
Console.WriteLine("This stamped finish type will require " + dStampedApply + " minutes of additional time.");
double dTotalTime3 = iSetUp + iCleanUp + dStampedApply + dTotalPouringTime;
Console.WriteLine("The total estimated time required will be " + dTotalTime3 + " minutes.");
Console.WriteLine("Invalid decorative finish type.");