reate a C# program.
-Create 5 variables as decimals: Count, pricce, subtotal, tax, andtotal
-Use a do while loop. If the price is not -1, the loopcontinues.
Show count number (ie: Item 1, Item 2, Item 3...)
Enter price
Get subtotal
Increase count
-Calculate tax(0.035%) and total
Show total count, subtotal, tax,and total
Output:
Item1: $2.00
Item2:: $3.00
Item3: $1.00
Item4: $-2 (Note: A negative number will not besubstracted. It will only be ignored)
There are 3 Items in this order (This is the totalcount)
Subtotal: $6.00
Tax 0.035: $0.21
Total: $6.21