Computer Science, asked by EliaKulsum, 1 year ago

WAP in java to print the simple interest,amount and compound interest

Answers

Answered by sdl
3
the above given pic contains ur answer
Attachments:

EliaKulsum: thanks but it is of a higher level. i need a class 9 standard answer. anyways,thankyou for your help
sdl: i am also in class 9
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