Kotlin Program to find quotient without using the division operator


In this program, You will learn how to find quotient without using a division operator in Kotlin.


2 = 5 / 2

0 = 2 / 5

Example: How to find quotient without using division operator in Kotlin.

import java.util.Scanner

fun main(args: Array<String>) {

    var x: Int
    var y: Int
    var z = 0

    var sc = Scanner(System.`in`)

    print("Enter two numbers:")
    x = sc.nextInt()
    y = sc.nextInt()

    while (x >= y) {
        x -= y
        z++
    }

    println("The Quotient is:$z")
}

Output:

Enter two numbers:10 2
The Quotient is:5