Diseñar un algoritmo que permita ingresar la hora, minutos y segundos y que me calcule la hora en el siguiente segundo ("0=< H =<23", "0=< M =<59" "0=< S=<59").
Solución
- Entrada: 8 : 1:59
- Salida: 8h:2m:0s
#include <stdio.h> int main() { int h,m,s; printf("Ingresa hora\n"); scanf("%d",&h); printf("Ingresa minuto\n"); scanf("%d",&m); printf("Ingresa segundo\n"); scanf("%d",&s); if(h < 24 && m < 60 && s < 60){ if(s < 59 && s >= 0){ printf("%dh %dm %ds",h,m,(s+1)); }else{ if(s==59){ if(m==59){ if(h==23){ printf("00h 00m 00s"); }else{ printf("%dh 00m 00s",(h+1)); } }else{ printf("%dh %dm 00s",h,(m+1)); } } } }else{ printf("Fuera de Rango"); } return 0; }
0 comentarios:
Publicar un comentario