Advertisement
myrdok123

08. Pet Shop

May 11th, 2024
819
1
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 1 0
  1. import java.util.Scanner;
  2.  
  3. public class P08PetShop {
  4.  
  5.     public static void main(String[] args) {
  6.         Scanner scanner = new Scanner(System.in);
  7.  
  8.         int countDogPacks = Integer.parseInt(scanner.nextLine());
  9.         int countCatPacks = Integer.parseInt(scanner.nextLine());
  10.  
  11.         double priceForDogs = countDogPacks * 2.50;
  12.         double priceForCats = countCatPacks * 4;
  13.  
  14.         double finalSum = priceForCats + priceForDogs;
  15.  
  16.         System.out.println(finalSum + " lv.");
  17.  
  18.     }
  19. }
  20.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement