Converting seconds to human readable format MM:SS Java
format, java, string-formatting, time
Solution
String readable = String.format("%d:%02d", s/60, s%60);
Problem
How can I convert a long int of seconds to the human readable format ``` MM:SS ``` Only SS should be 0 padded so ``` long = 67 -> 1:07 ```