drago1520

Untitled

Oct 3rd, 2021
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class P03102021УПР3 {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner (System.in);
  6.  
  7. double deposit = Double.parseDouble(scanner.nextLine());
  8. int months = Integer.parseInt(scanner.nextLine());
  9. double lihva = Double.parseDouble(scanner.nextLine());
  10. double sum = deposit+months*((deposit*lihva*0.01)/12);
  11. System.out.println(sum);
  12.  
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment