This computer science problem involves algorithmic thinking and programming concepts. The solution below explains the approach, logic, and implementation step by step.
ScanSolve AI Answer
Step 1: Identify the original price and discount percentage. Original price = 17 Discount = 60% = 0.60 Step 2: Formula for discounted price. Discounted price = Original price × (1 - Discount rate) Step 3: Substitute values. Discounted price = 17 × (1 - 0.60) = 17 × 0.40 Step 4: Calculate. 17 × 0.40 = 6.80 Step 5: Round to nearest dollar (as per options). Discounted price = 7 7
