summary refs log tree commit diff stats
path: root/java/text/ShapeAreaCalculations.typ
blob: f34c1a0e9077cae9be838cc670ee8d49c7a3a90f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#import "/template.typ": *
#show: A => apply(A)
#set raw(lang: "java-new")
#set par(leading: 0.6em)

#assignment(13)[
  Write a program to create a class `Shape` with 4 methods to calculate the areas of triangle, rectangle, square, and circle using method overloading.
]

#scos("ShapeAreaCalculations")

=== Discussion

#skind[Classes and methods implemented in the program]

- The `Shape` class provides static methods for calculating the area of different geometric shapes:
  - `static double area(double a, double b, double c)`: Calculates the area of a triangle using its side lengths.
  - `static int area(int length, int width)`: Calculates the area of a rectangle using its length and width.
  - `static int area(int sideLength)`: Calculates the area of a square using its side length.
  - `static double area(double radius)`: Calculates the area of a circle using its radius.

- The `ShapeAreaCalculations` class contains the main program for calculating the area of geometric shapes based on user input through a menu-driven interface:
  - `static void menu()`: Displays a menu of shape choices.
  - `public static void main(String[])`: Implements a menu-driven program for calculating the area of different shapes (_i.e._ triangle, rectangle, square, or circle) based on user input.

  
#signature()