POO dates format

This commit is contained in:
TiagoRG 2023-02-20 22:33:02 +00:00
parent 0da1e9b841
commit cef84de042
Signed by untrusted user who does not match committer: TiagoRG
GPG Key ID: DFCD48E3F420DB42
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: "); System.out.println("Introduza os segundos totais: ");
int totalSecs = (int) UserInput.getPositiveNumber(sin); int totalSecs = (int) UserInput.getPositiveNumber(sin);
int secs = totalSecs % 60; int secs = totalSecs % 60;
int mins = Math.round((float) (totalSecs / 60)); int mins = totalSecs / 60;
int hours = Math.round((float) (mins / 60)); int hours = mins / 60;
mins = 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(); sin.close();
} }