C加加计算年利率,使用void函数
时间: 2024-10-07 12:05:42 浏览: 43
在C++中,如果你想编写一个`void`类型的函数来计算年利率,通常不会直接涉及返回值,因为`void`函数主要用于改变状态或者没有明确的返回结果。不过,你可以创建一个函数来接受输入(比如本金、利率和时间)并处理相关的计算,然后打印出结果。这里是一个简单的例子:
```cpp
#include <iostream>
using namespace std;
// 定义一个void函数来计算年利率并显示信息
void calculateAnnualInterest(double principal, double rate, int time) {
double interest = principal * (rate / 100); // 将百分比转换为小数
double total = principal + interest; // 计算总额
cout << "After " << time << " years with a rate of " << rate << "%:\n";
cout << "Total amount is: " << total << "\n";
cout << "Annual interest earned is: " << interest << "\n";
}
int main() {
// 示例参数
double principal = 10000;
double rate = 5.0; // 例如5%的年利率
int time = 5; // 例如5年时间
calculateAnnualInterest(principal, rate, time);
return 0;
}
```
这个`calculateAnnualInterest`函数会根据给定的本金、年利率和时间来计算总金额以及年利息,并在控制台上显示出来。
阅读全文