इस लेख में, हम समझेंगे कि साधारण ब्याज की गणना कैसे की जाती है। साधारण ब्याज की गणना निम्न सूत्र का उपयोग करके की जाती है, यदि मूलधन =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