Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* the area and perimeter of the recrangle.
*
* Area = Length x Width
* Perimeter 2 x Length x Width
* Perimeter = 2 x (Length + Width)
*
* SAMPLE RUN:
* Enter Length: 7
Expand All @@ -24,7 +24,7 @@ public class AreaAndPerimeterOfARectangle {
public static void main(String[] args) {
// declare variables

// get length and with inputs
// get length and width with inputs

// perform area, perimeter calculations

Expand Down