Exercise Number: 2
Local Variable
Scenario: You are creating a method to calculate the area of a rectangle.
Task:
- Create a class
Rectangle
with a methodcalculateArea
that takes the length and width of the rectangle as parameters. - Inside the method, declare a local variable
area
to store the result. - Calculate the area and print it inside the method.