Merge pull request #19 from TiagoRG/dev-tiagorg

This commit is contained in:
Tiago Garcia 2023-02-20 22:34:31 +00:00 committed by GitHub
commit 15b329a18e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -15,10 +15,10 @@ public class SecsToHMS {
System.out.println("Introduza os segundos totais: ");
int totalSecs = (int) UserInput.getPositiveNumber(sin);
int secs = totalSecs % 60;
int mins = Math.round((float) (totalSecs / 60));
int hours = Math.round((float) (mins / 60));
int mins = totalSecs / 60;
int hours = mins / 60;
mins = mins % 60;
System.out.printf("%d segundos no formato hh:mm:ss : %d:%d:%d\n", totalSecs, hours, mins, secs);
System.out.printf("%d segundos no formato hh:mm:ss : %02d:%02d:%02d\n", totalSecs, hours, mins, secs);
sin.close();
}