Geography, asked by alokpandey634, 4 days ago

Write a Java program assign the value of p t r calculate simple interest

Answers

Answered by yashbaranwal1902
0

Answer:

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