Scala program to return a value from the function without using the 'return' statement

Here, we are going to learn how to return a value from the function without using the 'return' statement in Scala programming language?
Submitted by Nidhi, on May 27, 2021 [Last updated : March 09, 2023]

Scala – Returning value from function

Here, we will define a function with arguments and return a value without using the return statement. And, we will pass two integer arguments to add both numbers and return the result to the calling function.

Here, we will use only the "=" operator in the function definition to denote that, the created function will return a value.

Scala code to return a value from a function without using the 'return' statement

The source code to return a value from a function without using the return statement is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to return a value from function
// without using "return" statement

object Sample {
  def main(args: Array[String]) {
    // Function calling
    printf("Addition is: %d\n", addNum(30, 40));
  }

  // Function definition
  def addNum(num1: Int, num2: Int): Int = {
    var result: Int = 0;

    result = num1 + num2;

    result;
  }
}

Output

Addition is: 70

Explanation

In the above program, we used an object-oriented approach to create the program. We created an object Sample, and we defined main() function. The main() function is the entry point for the program.

In this program, we defined a function addNum() with two integer arguments num1 and num2 and return the result to the calling function.

In the main() function, we called addNum() function with value 30 and 40 and print the result returned by the function addNum() on the console screen.

Scala User-defined Functions Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.