wap to calculate simple interest with the help of multilevel in java
Answers
Answered by
1
Answer:
JAVA
public class Main.
{
public static void main (String args[])
{ float p, r, t, si; // principal amount, rate, time and simple interest respectively.
p = 13000; r = 12; t = 2;
si = (p*r*t)/100;
System.out.println("Simple Interest is: " +si);
}}
Answered by
0
Explanation:
JAVA
public class Main.
{
public static void main (String args[])
{ float p, r, t, si; // principal amount, rate, time and simple interest respectively.
p = 13000; r = 12; t = 2;
si = (p*r*t)/100;
System.out.println("Simple Interest is: " +si);
Similar questions
Computer Science,
28 days ago
Social Sciences,
28 days ago
Math,
1 month ago
Hindi,
1 month ago
Science,
9 months ago
English,
9 months ago