Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created May 9, 2021 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongorman/1197f4cab7a781996f408c037ef8301b to your computer and use it in GitHub Desktop.
Save jasongorman/1197f4cab7a781996f408c037ef8301b to your computer and use it in GitHub Desktop.
public class CarpetQuote {
public double calculate(double width, double length, double pricePerSqM) {
double area = width * length;
return Math.ceil(area * pricePerSqM);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment