Skip to content

Instantly share code, notes, and snippets.

@sud007
sud007 / BillCalculatorMain.kt
Last active November 23, 2024 14:28
Electricity Bill Calculation for rental floors
/**
* You can edit, run, and share this code.
* play.kotlinlang.org
*/
fun calculateTotalUnits(unitsOld: Double, unitsNew: Double): Double {
return (unitsNew - unitsOld).roundToTwoDecimalPlaces()
}
fun calculatePerUnitPrice(amountTotal: Double, unitsTotal: Double): Double {
return (amountTotal / unitsTotal).roundToTwoDecimalPlaces()