Advertisement
yovkovbpfps

Pet Shop

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