The problem is here:

String secs = usrInput.readLine();

int hours = (secs / 3600);
int remainder = (secs % 3600);

You are trying to divide secs by 3600, but secs is a String and 3600 is an...