task1.7.cpp 648 B

1234567891011121314151617181920212223
  1. #include <iostream>
  2. #include <iomanip>
  3. int main() {
  4. double deposit;
  5. double annualInterestRate;
  6. double monthlyInterest;
  7. std::cout << "Введите сумму денежного вклада в евро: ";
  8. std::cin >> deposit;
  9. std::cout << "Введите процент годовых: ";
  10. std::cin >> annualInterestRate;
  11. monthlyInterest = (annualInterestRate / 100) / 12 * deposit;
  12. std::cout << "Сумма денег, выплачиваемая банком каждый месяц: "
  13. << std::fixed << std::setprecision(2) << monthlyInterest << " евро" << std::endl;
  14. return 0;
  15. }