twoDigits function

String twoDigits(
  1. int n
)

不足两位前面补0

Implementation

String twoDigits(int n) {
  if (n >= 10) return "$n";
  return "0$n";
}