Answer to Question #310117 in C# for Michy

Question #310117

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:

1
Expert's answer
2022-03-12T12:45:46-0500

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());
        }

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS