Advertisement
Guest User

code shiz

a guest
Oct 1st, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class SalesCalculator
  4. {
  5. public static void main(String[] args)
  6. {
  7.  
  8. Scanner input = new Scanner(System.in);
  9.  
  10. double salesTotal = 0;
  11. double Bonus;
  12. double FinalPay;
  13.  
  14. System.out.print("Enter value of item or -1 to quit: ");
  15. double item = input.nextInt();
  16.  
  17. while (item != -1)
  18. {
  19. salesTotal = salesTotal + item;
  20.  
  21. System.out.print("Enter value of item or -1 to quit: ");
  22. item = input.nextInt();
  23. }
  24. Bonus = salesTotal * .09 + 200;
  25. FinalPay = salesTotal + Bonus;
  26.  
  27. System.out.printf("Your total payment is: ", FinalPay);
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement