June 1, 2014 Matthew Maennche Java, Learn To Code 20628, Java LANGUAGE: JAVA CHALLENGE: Write the definition of a class Clock. The class has no constructors and one instance variable of type int called hours. SOLUTION: public class Clock { private int hours; }