Using C# and Visual Studio, design and implement a standalone command-line application that fulfils the following requirements: 1.The user shall be able to enter the following values: a. Gross monthly income (before deductions). b. Estimated monthly tax deducted. c. Estimated monthly expenditures in each of the following categories:
Here is program:
static void Main(string[] args)
{
int monincome;
int montaxded;
Console.WriteLine("Enter gross monthly income (before deductions): ");
monincome = Int32.Parse(Console.ReadLine());
Console.WriteLine("Enter estimated monthly tax deducted: ");
montaxded = Int32.Parse(Console.ReadLine());
}
Comments
Leave a comment