এই নিবন্ধে, আমরা সহজ সুদ গণনা কিভাবে বুঝতে হবে. সাধারণ সুদ নিম্নলিখিত সূত্র ব্যবহার করে গণনা করা হয়, যদি মূল =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