जावा में चक्रवृद्धि ब्याज की गणना करने का कार्यक्रम निम्नलिखित है -
उदाहरण
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
डेमो नामक एक वर्ग में मुख्य कार्य होता है जिसमें एक प्रमुख मूल्य, एक दर और एक समय आरंभ किया जाता है। चक्रवृद्धि ब्याज के लिए सूत्र, मूलधन * ((1 + दर/100) बिजली समय) को एक मूल्य के लिए आरंभीकृत किया जाता है और आउटपुट की गणना की जाती है। यह कंसोल पर प्रदर्शित होता है।