import java.util.Scanner; public class Reloj { int hora; int minuto; int segundo; public Reloj(){//este inicializa hora=12; minuto=0; segundo=0; } public Reloj(int hh,int mm,int ss){//constructor de los 3 parametros y recomendable el nombre del parametro,cambia los valores actuales hora=hh; minuto=mm; segundo=ss; } public Reloj(int s){//Convertir segundos a horas hora = s / 3600; minuto = (s- (3600 * hora)) / 60; segundo= s - ((hora * 3600) + (minuto * 60)); } public void setReloj(int s){ hora = s / 3600; minuto = (s- (3600 * hora)) / 60; segundo= s - ((hora * 3600) + (minuto * 60)); toString(); System.out.println("[: " + hora + ":" + minuto+ ":" + segundo+"]"); } public void tick() { int[] conversion=conversionSegundos(hora,minuto); int x = conversion[0] + conversion[1] + 1 + segundo; setReloj(x); } public void addReloj(Reloj tipoReloj){ int[] x = conversionSegundos(tipoReloj.hora,tipoReloj.minuto); int [] c = conversionSegundos(hora,minuto); int sumaReloj=x[0]+c[0]+x[1]+c[1] + segundo + tipoReloj.segundo; setReloj(sumaReloj); } public void restaReloj(Reloj tipoReloj){ int[] x = conversionSegundos(tipoReloj.hora,tipoReloj.minuto); int [] c = conversionSegundos(hora,minuto); //el objeto tipo reloj HI ES A if(tipoReloj.hora