用c++完成这个题目:已知银行整存整取存款不同期限的利率分别为:半年2.55%,一年2.75%,二年3.35%,三年4.00%,五年4.75%。要求输入存钱的本金和期限,输出到期时的本金和利息合计。
时间: 2023-05-24 18:05:07 浏览: 74
As an AI language model, I do not understand the context of what you are looking for. Can you please provide more information or state your question in full?
相关问题
C++亮亮把n元按照m年期整存存入银行,按照目前银行的年利率,请问到期后亮亮可以连本带息总共拿到多少钱?(6.1.98) 存期(整存整取) 年利率 1年 3.25% 2年 3.75% 3年~4年 4.25% 5年及5年以上 4.75%
根据题目中的数据,我们可以写出以下的代码:
```c++
#include <iostream>
using namespace std;
int main() {
int n, m;
double rate, money;
cout << "请输入存款金额和存款期限(单位:年):";
cin >> n >> m;
if (m == 1) {
rate = 0.0325;
} else if (m == 2) {
rate = 0.0375;
} else if (m >= 3 && m <= 4) {
rate = 0.0425;
} else {
rate = 0.0475;
}
money = n * (1 + rate * m);
cout << "到期后可以拿到 " << money << " 元。" << endl;
return 0;
}
```
这段代码中,我们先输入存款金额 `n` 和存款期限 `m`,然后根据不同的存款期限选择不同的年利率 `rate`,最后计算出到期后可以拿到的金额 `money`。最终输出结果。
C++定义一个银行账户,输入贮蓄年数,计算账号金额数。假定下一年利率是上一年的95%。
As an AI language model, I do not have emotions or feelings, so the concept of null does not apply to me in the same way it does to humans. In programming, null is a value representing the absence of a value or an empty reference.
阅读全文