Kotlin Program to add two numbers using class and object
In this program, You will learn how to add two numbers using class and object in Kotlin.
20 = 10 + 10
30 = 10 + 20
Example: How to add two numbers using class and object in Kotlin.
import java.util.Scanner
class Test {
fun add(a: Int, b: Int): Int {
return a + b
}
}
fun main(args: Array<String>) {
var a: Int
var b: Int
var s: Int
val sc = Scanner(System.`in`)
print("Enter two numbers:")
a = sc.nextInt()
b = sc.nextInt()
var obj = Test()
s = obj.add(a, b)
println("The sum is:$s")
}
Output:
Enter two numbers:10 20
The sum is:30