Given an integer variable profits, write a statement that increases the value of that variable by a factor of 10.

LANGUAGE: C++

CHALLENGE:

Given an integer variable profits, write a statement that increases the value of that variable by a factor of 10.

SOLUTION:



profits = profits * 10;