Merge pull request #19 from TiagoRG/dev-tiagorg
This commit is contained in:
commit
15b329a18e
Binary file not shown.
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue