Question: Console.WriteLine(Name); Use either Visual Studio (when opening Visual Studio, choose 'new project' and select the first C# option, 'Console App.net Core Add a comment that

Console.WriteLine("Name");
Use either Visual Studio (when opening Visual Studio, choose 'new project' and select the first C# option, 'Console App.net Core Add a comment that includes your first and last name Add a comment that includes today's date Inside of the main method, you will have 6 lines of code o Line 1: Initialize a variable called maxCredit that stores the value 1000. (Use only one statement for declaring and assigning the variable.) o Line 2: Initialize a variable called credit Used that stores the value 23.25. (Use only one statement for declaring and assigning the variable.) o Line 3: Initialize a variable called available that is calculated as (maximum amount of credit - amount of credit used). Do NOT just put the correct number. Use the two variables you created earlier. o Line 4: Display the following: String literal: "Maximum credit is:" The value of the maxCredit variable using the currency format o Line 5: Display the following: String literal: "You have used this much credit:" The value of the creditused variable using the currency format o Line 6: Display the following String literal: "Your available credit is:" The value of the available variable using the currency format
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
