Question: Programing Language: C# ( C-Sharp ) Microsoft Visual Studio Assignment_1_ReceiptV1 Assignment: Write a Console program, let users to enter prices calculate subtotal, tax, and total.
Assignment_1_ReceiptV1 Assignment: Write a Console program, let users to enter prices calculate subtotal, tax, and total. Delcare variable data type as decimal (6 variables needed) (20%) decimal apple; Conver string to decimal from input (20%) apple - Convert.ToDecimal(Console.ReadLine(); - Do addition for subtotal (10%) Multiplication for tax (0.065M) M or m stands for money value, read page 94. (10%) - Addition for total (20%) - You need to show only two digits after decimal point (20%) Console.WriteLine(" Subtotal: ${0}", String.Format("{0:0.00)", subTotal)); blank line: Console.WriteLine("") Console.Write(" Apple: apple - Convert.ToDecimal(Console.ReadLine(); $")
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
