wilsonhe7297 wilsonhe7297 30-11-2022 Computers and Technology contestada Given the integer variables x and y , write a fragment of code that assigns the larger of x and y to another integer variable max. if (x > y) max = x; else max = y;