Add two numbers in Scala - The Coding Shala

Home >> Learn Scala >> Add Two Numbers

 In this post, we will learn how to write a Scala program to Add Two Numbers.

Add Two Numbers in Scala

The following is the Scala program to Add two Numbers.

Scala Program: 

//add two numbers in scala
//the coding shala
object Main {
  def main(args: Array[String]){
    //we can take user input also
    val num1 = 10;
    val num2 = 20;
    
    //add both numbers
    val result = num1 + num2;
    println("Sum of " + num1 + " + " + num2 + " = " + result);
  }
}


Other Posts You May Like
Please leave a comment below if you like this post or found some errors, it will help me to improve my content.

Comments

Popular Posts from this Blog

LeetCode - Crawler Log Folder Solution - The Coding Shala

N-th Tribonacci Number Solution - The Coding Shala

Java Program to Convert Binary to Decimal - The Coding Shala

New Year Chaos Solution - The Coding Shala

Java Program to Find LCM of Two Numbers - The Coding Shala