Simple interest is a quick method of calculating the interest charge on a loan. Simple interest is determined by multiplying the daily interest rate by the principal by the number of days that elapse between payments.
Simple interest formula is given by:
Simple Interest = (P x T x R)/100
Where,
- P is the principal amount
- T is the time and
- R is the rate
Examples: –
Example 1:
Input : P = 10000
R = 5
T = 5
Output : 2500
Explanation - We need to find simple interest on
Rs. 10, 000 at the rate of 5% for 5
units of time.
Example 2:
Input : P = 3000
R = 7
T = 1
Output : 210
Example 1:
Java
import java.io.*;
class GFG {
public static void main(String args[])
{
float P = 1 , R = 1 , T = 1 ;
float SI = (P * T * R) / 100 ;
System.out.println( "Simple interest = " + SI);
}
}
|
Output
Simple interest = 0.01
Time Complexity: O(1)
Auxiliary Space: O(1)
Example 2:
Java
import java.io.*;
class GFG {
public static void main(String args[])
{
float P = 10000 , R = 5 , T = 5 ;
float SI = (P * T * R) / 100 ;
System.out.println( "Simple interest = " + SI);
}
}
|
Output
Simple interest = 2500.0
Time Complexity: O(1)
Auxiliary Space: O(1)
Please refer complete article on the Program to find simple interest for more details!
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
07 Feb, 2023
Like Article
Save Article