1234567891011121314151617181920212223 |
- #include <iostream>
- #include <iomanip>
- int main() {
- double deposit;
- double annualInterestRate;
- double monthlyInterest;
- std::cout << "Введите сумму денежного вклада в евро: ";
- std::cin >> deposit;
- std::cout << "Введите процент годовых: ";
- std::cin >> annualInterestRate;
- monthlyInterest = (annualInterestRate / 100) / 12 * deposit;
- std::cout << "Сумма денег, выплачиваемая банком каждый месяц: "
- << std::fixed << std::setprecision(2) << monthlyInterest << " евро" << std::endl;
- return 0;
- }
|