Advertisement
stoyanoff

08. Pet Shop

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