다음은 Java에서 복리 이자를 계산하는 프로그램입니다 -
예
import java.io.*; public class Demo{ public static void main(String args[]){ double princ = 456000, rt = 9.75, tm = 7; double comp_int = princ *(Math.pow((1 + rt / 100), tm)); System.out.println("The compound interest for the given principle amount, rate and time is "+ comp_int); } }
출력
The compound interest for the given principle amount, rate and time is 874573.9655622267
Demo라는 클래스에는 주요 값, 비율 및 시간이 초기화되는 주요 기능이 포함되어 있습니다. 복리식, 원금 *((1 + rate/100) power time)을 값으로 초기화하고 출력을 계산합니다. 콘솔에 표시됩니다.