単利を計算するJavaプログラム
この記事では、単純な利息を計算する方法を理解します。単利は、次の式を使用して計算されます。元本=P、利率=年間R%、時間=T年の場合:
Simple Interest (S.I) = P * T * R / 100
単純な関心 −元本総額に対する利息の割合。複利に比べて収益は少なくなります。
以下は同じのデモンストレーションです-
入力
入力が-
であると仮定しますEnter a Principle number : 100000 Enter a Interest rate : 5 Enter a Time period in years : 2
出力
必要な出力は-
になりますSimple Interest : 1000
アルゴリズム
Step 1 – START Step 2 – Declare four float values principle, rate, time, simple_interest Step 3 – Read values of principle, rate, time, from the user Step 4 – Perform "(principle*rate*time)/100" to calculate the simple interest and store it in a simple_interest variable Step 8 – Display simple_interest Step 10 – STOP
例1
ここでは、プロンプトに基づいてユーザーが入力を入力しています。この例は、コーディンググラウンドツールでライブで試すことができます 。
import java.util.Scanner; public class SimpleInterest{ public static void main (String args[]){ float principle, rate, time, simple_interest; System.out.println("Required packages have been imported"); Scanner my_scanner = new Scanner(System.in); System.out.println("A my_scanner object has been defined "); System.out.print("Enter a Principle number : "); principle = my_scanner.nextInt(); System.out.print("Enter a Interest rate : "); rate = my_scanner.nextInt(); System.out.print("Enter a Time period in years : "); time = my_scanner.nextInt(); simple_interest = (principle*rate*time)/100; System.out.println("The Simple Interest is : " + simple_interest); } }
出力
Required packages have been imported A Scanner object has been defined Enter a Principle number : 10000 Enter a Interest rate : 5 Enter a Time period in years : 2 The Simple Interest is : 1000.0
例2
ここでは、整数は事前に定義されており、その値にアクセスしてコンソールに表示されます。
public class SimplInterest{ public static void main (String args[]){ float principle, rate, time, simple_interest; principle = 100000; rate = 5; time = 2; System.out.printf("The Principle amount is %f \nThe interest rate is %f \nThe time period in years is %f " , principle, rate, time); simple_interest = (principle*rate*time)/100; System.out.println("\nThe Simple Interest is: " + simple_interest); } }
出力
The Principle amount is 100000.000000 The interest rate is 5.000000 nThe time period in years is 2.000000 The Simple Interest is: 1000.0
-
Pythonプログラムへの単純な関心
この記事では、Python3.xでの単利の計算について学習します。またはそれ以前。 単純な関心 は、1日の利率に元本を掛け、支払いの間に経過した日数を掛けて計算されます。 数学的に 単利=(P x T x R)/ 100 どこで、 Pは元本です Tは時間であり Rはレートです たとえば、 P =1000の場合、R =1、T =2 次にSI=20.0 それでは、Pythonで単純な利息計算機を実装する方法を見てみましょう。 例 P = 1000 R = 1 T = 2 # simple interest SI = (P * R * T) / 100 print(&
-
単純な興味のための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