Kotlin Program to find quotient and remainder
In this program, You will learn how to find quotient and remainder in Kotlin.
2 = 5 / 2
1 = 5 % 2
Example: How to find quotient and remainder in Kotlin.
import java.util.Scanner
fun main(args: Array<String>) {
var x: Int
var y: Int
var z: Int
var sc = Scanner(System.`in`)
print("Enter two numbers:")
x = sc.nextInt()
y = sc.nextInt()
z = x % y
println("The remainder is:$z")
z = x / y
println("The Quotient is:$z")
}
Output:
Enter two numbers:10 2
The remainder is:0
The Quotient is:5