476179

discount

Oct 2nd, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. package lessons;
  2.  
  3. public class Discount
  4. {
  5. // write a program that calculates the sale price
  6. //of an 59$ item with 20% off
  7.  
  8. public static void main(String[] args)
  9. {
  10. double disc, Drate = .20, ogPrice = 59.0 , SalePrice;
  11. disc = ogPrice * Drate;
  12. SalePrice = ogPrice - disc;
  13. System.out.println("sale price: $"+SalePrice);
  14. }
  15. //chem,bio,mathAF,mathCV,compSci,CompEng,
  16. }
Add Comment
Please, Sign In to add comment