write a java program to find the SI where P is 700000, R is 7.5% and time is 53 days
Answers
Answered by
0
Answer:
sorry unable to understand the question
Explanation:
mark me brainleist
Answered by
3
Answer:
import java.util.Scanner;
public class JavaExample
{
public static void main(String args[])
{
float p, r, t, sinterest;
Scanner scan = new Scanner(System.in);
System.out.print("Enter the Principal : ");
p = scan.nextFloat();
System.out.print("Enter the Rate of interest : ");
r = scan.nextFloat();
System.out.print("Enter the Time period : ");
t = scan.nextFloat();
scan.close();
sinterest = (p * r * t) / 100;
System.out.print("Simple Interest is: " +sinterest);
}
}
Explanation:
Hope it will help you
Follow me guys
Similar questions
Science,
4 months ago
Social Sciences,
4 months ago
Business Studies,
4 months ago
English,
8 months ago