program it in java Define the FiguraGeometrica class that contains the attributes that characterize all geometric figures and the necessary methods to handle them. Also, define the derived classes Square and Triangle. Write a Java program that uses these classes to calculate the total square meters of fabric needed to make N square-shaped cushions and M equilateral triangle-shaped cushions. The data to be entered into the program is: Data: • N: total square-shaped cushions. • SideC: size, in centimeters, of each of the sides of the square cushion. • M: total number of triangular-shaped cushions. • SideT: size, in centimeters, of each of the sides of the triangular cushion. Expected result: Total square meters required for the manufacture of the N + M cushions.
program it in java
Define the FiguraGeometrica class that contains the attributes that characterize all geometric figures and the necessary methods to handle them. Also, define the derived classes Square and Triangle. Write a Java program that uses these classes to calculate the total square meters of fabric needed to make N square-shaped cushions and M equilateral triangle-shaped cushions. The data to be entered into the program is:
Data:
• N: total square-shaped cushions.
• SideC: size, in centimeters, of each of the sides of the square cushion.
• M: total number of triangular-shaped cushions.
• SideT: size, in centimeters, of each of the sides of the triangular cushion.
Expected result: Total square meters required for the manufacture of the N + M cushions.
Approach
1. Create a class FiguraGeometrica
2. Create main method
3. Ask user to enter the sides as well as number of cushions
4. Create class Square and Triangle.
5.Create constructors and getArea() function where you may compute values of Area from there
6. Create object of Square and Triangle , and pass variable in it.
7. Multiply the area with number of cushions.
8. Print the result.
Step by step
Solved in 2 steps with 1 images