Examlex

Solved

Class Rectangle

question 53

Essay

class Rectangle
{
int length, breadth;
void show(int x, int y)
{
length = x;
breadth = y;
}
int calculate()
{
return(length * breadth);
}
}
public class EnteredValues
{
public static void main(String[] args)
{
Rectangle rectangle = new Rectangle();
_____________________________
_____________________________
rectangle.show(a, b);
System.out.println("You entered: " + a + " and " + b);
int area = rectangle.calculate();
System.out.println("The area of the rectangle is: " + area);
}
}
In the above program, the area of a rectangle is calculated by using two classes named Rectangle and EnteredValues. In the first class, two methods are used: show(int x, int y) and calculate(). The show() method takes two variables as input, and the calculate() method calculates the area of a rectangle.
In the second class, the main() method is declared. Inside this method, an object of a Rectangle class is created. The user will input two values and store the values in the variables. The entered values will be changed into integers using the parseInt() method. The variables are then passed in the show()method, and the area will be calculated by the calculate() method.
On the lines provided, create the parseInt() method statements to reformat the two String values.


Definitions:

Marriage Counseling

A form of therapy aimed at helping couples understand and resolve conflicts to improve their relationship.

Behavior Therapy

A therapeutic approach that focuses on changing maladaptive behaviors through reinforcement strategies and conditioning.

Learning Principles

Encompass the fundamental concepts and strategies through which individuals acquire new knowledge, skills, attitudes, or values.

Person-centered Therapy

A counseling approach emphasizing the client's perspective, promoting self-discovery, and valuing their potential for personal growth.

Related Questions