We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab71ec commit c407cabCopy full SHA for c407cab
Programming-Challenges/Fundamentals/src/com/challenges/LandCalculation.java
@@ -10,11 +10,11 @@ public class LandCalculation {
10
public static void main(String [] args) {
11
12
// Declare Variables
13
- final double oneAcre = 43560; // square feer
+ final double ONE_ACRE = 43560; // square feer
14
double givenSize = 389767; // in square feet
15
double numberOfAcres;
16
17
- numberOfAcres = givenSize / oneAcre;
+ numberOfAcres = givenSize / ONE_ACRE;
18
System.out.print(numberOfAcres + " acres");
19
}
20
0 commit comments