Write a statement that increments total by the value associated with amount . That is, add the value associated with amount to that associated with total and assign the result to total .

Write a statement that increments total by the value associated with amount . That is, add the value associated with amount to that associated with total and assign the result to total .



Answer: total=(total + amount)


Learn More :