Write a statement to assign to kilos the value of pounds divided by 2.2.

LANGUAGE: Visual Basic

CHALLENGE:

Write a statement to assign to kilos the value of pounds divided by 2.2.  (The varialbes have already been declared and pounds has already been initialized.)

SOLUTION:

kilos = pounds / 2.2