用于计算简单利息的 C 语言程序?
简单利息是本金、利率和时长的乘积(单位:年)乘以 100。
例如,
输入 − p=5、r=4、t=5
输出 − 1
说明:简单利息 = (本金 * 利率 * 年数) / 100
SI= 5*4*5/100 = 1
示例
#include<iostream> #include <stdio.h> using namespace std; int main() { //principle amount float p = 5; //time float r = 4; //rate in years float t = 5; // Simple interest float SI = 0; SI =(p * t * r) / 100; printf("Simple Interest = %f ",SI); return 0; }
输出
Simple Interest = 1.0000
广告