public class segundos {
int segundos;
int tiempo;
segundos ()
{
}
segundos (int s)
{
segundos=s;
}
int conv_semanas(){
int semanas;
semanas= segundos/604800;
this.tiempo=segundos-(semanas*604800);
return semanas;
}
int conv_dias(){
int dias;
dias=this.tiempo/86400;
this.tiempo=this.tiempo-(dias*86400);
return dias;
}
int conv_horas(){
int horas;
horas=this.tiempo/3600;
this.tiempo=this.tiempo-(horas*3600);
return horas;
}
int conv_minutos(){
int minutos;
minutos=this.tiempo/60;
this.tiempo=this.tiempo-(minutos*60);
return minutos;
}
int conv_seg(){
int seg;
seg=this.tiempo;
return seg;
}
void set_segundos(int s){
segundos=s;
}
}
Dada una cantidad en segundos se obtiene el equivalente en semanas, dias, horas, mintuos, segundos ejemplo 9364787 segundos igual a 15 semanas con 3 dias, 9 horas, con 19 minutos, etc etc...
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.