Problem 55795. Conversor de Segundos

Digite um valor referente ao tempo em segundos. Retorne um valor com a quantidade convertida em dias, horas, minutos e segundos respectivamente.
segundos = 43560;
[dias, horas, minutos, segundos] = ConverteSegundos(segundos);
dias = 0;
horas = 12;
minutos = 6;
segundos = 0;

Solution Stats

61.54% Correct | 38.46% Incorrect
Last Solution submitted on Oct 17, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers24

Suggested Problems

More from this Author20

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!