Advertisement
veronikaaa86

08. Pet Shop

May 7th, 2022
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class P08PetShop {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner(System.in);
  6.  
  7. int countDog = Integer.parseInt(scanner.nextLine());
  8. int countCat = Integer.parseInt(scanner.nextLine());
  9.  
  10. double result = (countDog * 2.5) + (countCat * 4);
  11.  
  12. System.out.println(result + " lv.");
  13. }
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement