Advertisement
veronikaaa86

08. Pet Shop

Oct 2nd, 2021
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. package firstSteps;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class P08PetShop {
  6. public static void main(String[] args) {
  7. Scanner scanner = new Scanner(System.in);
  8.  
  9. int countDogs = Integer.parseInt(scanner.nextLine());//4
  10. int countCats = Integer.parseInt(scanner.nextLine());
  11.  
  12. double priceDogs = countDogs * 2.5;
  13. double priceCats = countCats * 4;
  14.  
  15. double totalPrice = priceDogs + priceCats;
  16.  
  17. System.out.printf("%.1f lv.", totalPrice);
  18.  
  19. }
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement