Question: Write in C# language Instructions PaintingEstimate.cs 1 using System; 2 using static System.Console; 3 class PaintingEstimate Create a program named PaintingEstimate whose Main() method prompts
Write in C# language
Instructions PaintingEstimate.cs 1 using System; 2 using static System.Console; 3 class PaintingEstimate 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. 5static void Main( 7 // Write your main here 10 public static double ComputeCost(int length, int width) // Write your ComputeCost method here. 12 13 14
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
