Q:

Kotlin program to perform arithmetic operations on two numbers

belongs to collection: Kotlin programming Exercises

0

Given two numbers a and b, we have to find addition, subtraction, multiplication, division, and remainder.

Example:

    Input:
    a = 13
    b = 5

    Output:
    a + b = 18
    a - b = 8
    a * b = 65
    a / b = 2
    a % b = 3

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to perform arithmetic operations in Kotlin

package com.includehelp.basic

// Main Method Entry Point of Program
fun main(args:Array<String>){
    val a = 13
    val b = 5

    val sum  = a + b  // Perform Addition
    val sub  = a - b  // Perform Subtraction
    val muti = a * b  // Perform Multiplication
    val div  = a / b  // Perform Division
    val rem  = a % b  // Perform remainder

    // Print  on Console
    println("Addison of $a and $b is       : $sum")
    println("Subtraction of $a and $b is   : $sub")
    println("Multiplication of $a and $b is: $muti")
    println("Division of $a and $b is      : $div")
    println("Remainder of $a and $b is     : $rem")
}

Output

Addison of 13 and 5 is       : 18
Subtraction of 13 and 5 is   : 8
Multiplication of 13 and 5 is: 65
Division of 13 and 5 is      : 2
Remainder of 13 and 5 is     : 3

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

<< Write a program in kotlin to iterate over the foll...