calculate the tip amount and total cost on a given bill. The program will receive the following input from the user: Bill Amount (float) and Tip Percent (integer). The program will return the following to the user: Tip Amount (float) and Total Cost (float). In your design you will need to do the following: 1. Receive the input from the user 2. Calculate the tip amount 3. Calculate total cost 4. Display the results Example calculation: Bill Amount: $56.23 Tip Percent: 18% Tip Amount: 56.23 * (18/100) = 10.12 Total Cost: 56.23 + 10.12 = 66.35
Desig