Chapter 4: Problem 17
Rewrite the following statements using augmented assignment operators: a) quantity = quantity + 1 b) days_left = days_left ? 5 c) price = price * 10 d) price = price / 2
Short Answer
Expert verified
5 (typo)
Corrected Original Statement: days_left = days_left - 5
Rewritten Statement: days_left -= 5
3. Rewrite the given multiplication statement using an augmented assignment operator.
Original Statement: price = price * 10
Rewritten Statement: price *= 10
4. Rewrite the given division statement using an augmented assignment operator.
Original Statement: price = price / 2
Rewritten Statement: price /= 2
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.