using IF-ELSE Assignment -1 Spring 2020 CIS 2348 - Information Systems Application Development Assume that you are developing a billing software for a departmental store which sells electronic appliances, clothing, and toys. The store offers discounts on a festival occasion as below: a) 20 % discount on electronic appliances whose prices are greater than or equal to $100 b) 30 % discount on clothing if the price of a clothing item is greater than or equal to $50 c) All the toys greater than or equal to $20 are subject to 10% discount. All goods except toys are taxed at 8.5% of its price. Assume that the person at the checkout counter will be running your application. It has to take details of each item one by one until the check-out employee completes entering all the items in a customer's cart. The employee enters the following data for each item: i. item code (int) il. item name (String) quantity (int) iv. price (double) V. Category (1. Electronics, 2. Clothing, 3. Toys) Write a Java program to print itemized receipt along with total bill amount, taxes and savings. The output for the following test input is given below. Use the input to test code. Enter No of items in the Cart: Enter the item category as: 1. Electronics, 2. Clothing, 3. Toys: Enter the item code: Enter the item Name: Toaster Enter the item price: 100 Enter the item Quantity: Enter the item Category: Toaster Item code : 1 qty Price/unit : 100.0 Item discount : 20.0 Item total : 80.0 Enter the item code: Enter the item Name: Jeans using IF-ELSE Enter the item price: 55 Enter the item Quantity: Enter the item Category: Jeans Item code :2 qty :1 Price/unit : 55.0 Item discount : 16.5 Item total : 38.5 Enter the item code: Enter the item Name: Softtoy Enter the item price: 20 Enter the item Quantity: Enter the item Category: Softtoy Item code :3 qty : 1 Price/unit : 20.0 Item discount : 2.0 Item total : 18.0 Order Total : 136.5 Sales Tax : 10.0725 Total Bill amount : 146.5725 Total savings : 38.5 using IF-ELSE Assignment -1 Spring 2020 CIS 2348 - Information Systems Application Development Assume that you are developing a billing software for a departmental store which sells electronic appliances, clothing, and toys. The store offers discounts on a festival occasion as below: a) 20 % discount on electronic appliances whose prices are greater than or equal to $100 b) 30 % discount on clothing if the price of a clothing item is greater than or equal to $50 c) All the toys greater than or equal to $20 are subject to 10% discount. All goods except toys are taxed at 8.5% of its price. Assume that the person at the checkout counter will be running your application. It has to take details of each item one by one until the check-out employee completes entering all the items in a customer's cart. The employee enters the following data for each item: i. item code (int) il. item name (String) quantity (int) iv. price (double) v. Category (1. Electronics, 2. Clothing, 3. Toys) Write a Java program to print itemized receipt along with total bill amount, taxes and savings. The output for the following test input is given below. Use the input to test code. Enter No of items in the Cart: Enter the item category as: 1. Electronics, 2. Clothing, 3. Toys: Enter the item code: Enter the item Name: Toaster Enter the item price: 100 Enter the item Quantity: Enter the item Category: Toaster Item code : 1 qty Price/unit : 100.0 Item discount : 20.0 Item total : 80.0 Enter the item code: Enter the item Name: Jeans