Kotlin Program to Compute Quotient and Remainder

bookmark

fun main(args: Array<String>) {

    val dividend = 25
    val divisor = 4

    val quotient = dividend / divisor
    val remainder = dividend % divisor

    println("Quotient = $quotient")
    println("Remainder = $remainder")
}
 

 

Output:

Quotient = 6
Remainder = 1