#include #include #include //HECHO POR ELIO SALINAS// float A,B,C; main() { system("title PROGRAMA PARA SABER DE SEGUNDO A MINUTOS Y HORA"); system("color 15"); printf("\t\tDE SEGUNDO A MINUTOS Y HORA\n"); printf("Ingrese los segundos: "); scanf("%f",&B); A=B/60; C=B/360; printf("\nEN MINUTOS: %.3f\n",A); printf("EN HORA: %.3f",C); getch(); }