December 27, 2013 Matthew Maennche C++, Learn To Code 10636, C++ LANGUAGE: C++ CHALLENGE: 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. SOLUTION: if(x > y){ max = x; }else{ max = y; }