Computer Science, asked by ramprakashchoudhary1, 1 month ago

wap to calculate simple interest with the help of multilevel in java​

Answers

Answered by bhanuchandergudikand
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 Anonymous
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