単純な興味のための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
-
複利のためのPythonプログラム
この記事では、特定の問題ステートメントを解決するための解決策とアプローチについて学習します。 問題の説明 −原則、利率、時間の3つの入力値が与えられ、複利を計算する必要があります。 以下のコードは、複利の計算プロセスを示しています。 ここで使用される式はです。 Compound Interest = P(1 + R/100)r どこで、 Pは元本です Rはレートであり、 Tは期間です 実装は以下のとおりです 例 def compound_interest(principle, rate, time): CI = principle * (pow((1
-
単純な興味のためのPythonプログラム
この記事では、Python3.xでの単純な利息の計算について学習します。またはそれ以前。 単利は、1日の利率に元本を掛け、支払いの間に経過した日数を掛けて計算されます。 数学的に Simple Interest = (P x T x R)/100 Where, P is the principal amount T is the time and R is the rate たとえば、 If P = 1000,R = 1,T = 2 Then SI=20.0 Now let’s see how we can implement a simple interest calc