Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class YardGreening {
- public static void main(String[] args) {
- Scanner myScan = new Scanner(System.in);
- double area = Double.parseDouble(myScan.nextLine());
- double totalPrice = area * 7.61;
- double discount = 0.18 * totalPrice;
- double finalPrice = totalPrice - discount;
- System.out.printf("The final price is: %s lv. \n", finalPrice);
- System.out.printf("The discount is: %s lv.", discount);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment