Write a statement using a compound assignment operator to cut the value of pay in half (pay is an integer variable that has already been declared and initialized).
LANGUAGE: Visual Basic
CHALLENGE:
Write a statement using a compound assignment operator to cut the value of pay in half (pay is an integer variable that has already been declared and initialized).
SOLUTION:
pay \= 2