Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

단순이자를 계산하는 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

여기에서 입력은 프롬프트에 따라 사용자가 입력하고 있습니다. 우리코딩 그라운드 도구에서 이 예제를 라이브로 사용해 볼 수 있습니다. 단순이자를 계산하는 Java 프로그램 .

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