编写一个能计算银行存款的小程序
时间: 2024-06-13 08:04:52 浏览: 61
基于微信小程序的农商银行微银行系统的设计与实现
以下是一个能计算银行存款的小程序,它可以根据用户输入的存款金额和存款年限计算出最终的本息和。请注意,本程序使用的是C++语言。
```cpp
#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;
int main()
{
double principal, rate, interest, amount;
int years;
cout << "请输入存款金额(元):";
cin >> principal;
cout << "请输入存款年限(年):";
cin >> years;
rate = 0.0375; // 年利率
amount = principal * pow(1 + rate, years); // 计算本息和
cout << fixed << setprecision(2) << "存款" << years << "年后的本息和为:" << amount << "元" << endl;
return 0;
}
```
阅读全文