diff --git a/kotlin/clock/src/main/kotlin/Clock.kt b/kotlin/clock/src/main/kotlin/Clock.kt new file mode 100644 index 0000000..6e2faa8 --- /dev/null +++ b/kotlin/clock/src/main/kotlin/Clock.kt @@ -0,0 +1,33 @@ +data class Clock(var hours: Int, var minutes: Int) { + init { + val minutesTemp = minutes.rem(60) + var extraHours = minutes.div(60) + if (minutesTemp < 0){ + extraHours-- + this.minutes = 60 + minutesTemp + } else this.minutes = minutesTemp + + val hoursTemp = (hours + extraHours).rem(24) + this.hours = if (hoursTemp < 0){ 24 + hoursTemp } else hoursTemp + } + + private fun addMinutes(x: Int): Unit { + if (x > 59){ + + } + } + + private fun addHours(x: Int): Unit { + + } + + fun add(i: Int) { + this.addMinutes(i) + this.addHours(i.div(60)) + + } + + override fun toString(): String { + return "${if (hours > 9){ "$hours"} else {"0$hours"}}:${if (minutes > 9){ "$minutes"} else {"0$minutes"}}" + } +} \ No newline at end of file