January 5, 2014 Matthew Maennche C++, Learn To Code 11146, C++ LANGUAGE: C++ CHALLENGE: Write a statement that terminates the current loop when the value of the int variables x . and y .are equal SOLUTION: if(x == y){ break; }