Write a statement to assign to weight_in_pounds the value of weight_in_kilos times 2.2.

LANGUAGE: C++

CHALLENGE:

Write a statement to assign to weight_in_pounds the value of weight_in_kilos times 2.2. (The variables have already been declared  and weight_in_kilos has already been initialized .)

SOLUTION:



weight_in_pounds = weight_in_kilos * 2.2;