Guest User

Untitled

a guest
Dec 11th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public static double[] taxAmount (double pounds, double taxPercentage) {
  2. double taxAmount = pounds * taxPercentage/100;
  3. double[] taxAmountArray = new double[1];
  4. taxAmountArray[0] = taxAmount;
  5. return taxAmountArray;
  6. }
Add Comment
Please, Sign In to add comment