Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) {
- Scanner sc = new Scanner (System.in);
- System.out.println("Введите сколько вы вкладываете: ");
- double money = sc.nextInt();
- System.out.println("Введите процент банка: ");
- double perc = sc.nextInt();
- int year = 0;
- System.out.println("Введите сколько вам нужно денег: ");
- int money2 = sc.nextInt();
- while (money < money2) {
- money += money * perc / 100;
- money = Math.floor(money * 100);
- money /= 100;
- year++;
- }
- System.out.printf("Вам нужно %d лет.", year);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment