Advertisement
veronikaaa86

09. Yard Greening

Jul 2nd, 2022
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class P09YardGreening {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner(System.in);
  6.  
  7. double allSqM = Double.parseDouble(scanner.nextLine());
  8.  
  9. double amount = allSqM * 7.61;
  10. double discount = amount * 0.18;
  11. double sumWithoutDiscount = amount - discount;
  12.  
  13. System.out.printf("The final price is: %.2f lv.%n", sumWithoutDiscount);
  14. System.out.printf("The discount is: %.2f lv.", discount);
  15. }
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement