Write code that uses a while loop to output the even numbers between and including the integers 10 and 50. int integer = 10; while (integer <= 50) { cout << integer << " "; integer = integer + 2; }