Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

โปรแกรม Java คำนวณดอกเบี้ยทบต้น


ต่อไปนี้เป็นโปรแกรมคำนวณดอกเบี้ยทบต้นใน 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 + อัตรา/100) เวลากำลัง) ถูกเตรียมข้อมูลเบื้องต้นเป็นค่าและคำนวณเอาท์พุต สิ่งนี้จะแสดงบนคอนโซล