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

Java Program to Convert Binary to Decimal - The Coding Shala

Shell Script to Create a Simple Calculator - The Coding Shala

N-th Tribonacci Number Solution - The Coding Shala

Introduction to Kotlin Programming Language for Backend Development - The Coding Shala

Java Program to Reverse a String using Stack - The Coding Shala