POO dates format

This commit is contained in:
TiagoRG 2023-02-20 22:33:02 +00:00
parent 228c1c8222
commit 12583ba102
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();
}