Here, we will read the length and breadth of the rectangle from the user and calculate the area of the rectangle. After that, we will print the result on the console screen.
The source code to calculate the area of the rectangle is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
// Scala program to calculate the area of rectangle
object Sample{
def main(args:Array[String]){
var length:Float =0
var breadth:Float =0
var area:Float =0
print("Enter the length of rectangle: ")
length=scala.io.StdIn.readFloat()
print("Enter the breadth of rectangle: ")
breadth=scala.io.StdIn.readFloat()
//Caculate the area of rectangle.
area = length * breadth
println("Area of rectangle: "+area)
}
}
Output:
Enter the length of rectangle: 7.2
Enter the breadth of rectangle: 4.5
Area of rectangle: 32.399998
Explanation:
In the above program, we used an object-oriented approach to create the program. Here, we created an object Sample. We defined main() function. The main() function is the entry point for the program.
In the main() function, we created three float variables length, breadth, area that are initialized with 0. Then we read the value of length, breadth of the rectangle from the user and calculated the area of the rectangle. After that, we printed the result on the console screen.
Program/Source Code:
The source code to calculate the area of the rectangle is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
Explanation:
In the above program, we used an object-oriented approach to create the program. Here, we created an object Sample. We defined main() function. The main() function is the entry point for the program.
In the main() function, we created three float variables length, breadth, area that are initialized with 0. Then we read the value of length, breadth of the rectangle from the user and calculated the area of the rectangle. After that, we printed the result on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer