Loading

Exercise Number: 2

Local Variable

Scenario: You are creating a method to calculate the area of a rectangle.

Task:

  1. Create a class Rectangle with a method calculateArea that takes the length and width of the rectangle as parameters.
  2. Inside the method, declare a local variable area to store the result.
  3. Calculate the area and print it inside the method.