int number = 0;
cout << "Number: ";
cin >> number;

if (number <= 100)
number = number * 2;
else
if (number > 500)
number = number * 3;
//end if
//end if

If the number variable contains the integer 200, what value will be in the number variable after the code above is processed?


0
200
400
600