Question: PaintingEstimate.cs Instructions Create a program named PaintingEstimate whose Main() method prompts a user for length and width of a room in feet. Create a method

PaintingEstimate.cs Instructions Create a program named PaintingEstimate whose Main() method prompts a user for length and width of a room in feet. Create a method that accepts the values and then computes the cost of painting the room, assuming the room is rectangular and has four full walls and 9-foot ceilings. The price of the job is $6 per square foot. Return the price to the Main() method, and display it. 1 using System 2 using static Systen.Console; 3 class PaintingEstinate 4 5 6 7 8 9 static void Main() /I Write your main here 10 public static double ComputeCost(int length, int width) GRADING As you complete the steps above, you can use the Test button to check if the lab tests are passing. Once you are satisfied with the results, use the Grade button to save your score 12 13 14 // Write your ComputeCost method here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
