Computer Science, asked by shobhanatripathi31, 1 month ago

read principal rate and time and display simple interest​

Answers

Answered by jswain53js
2

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);

}}

Explanation:

MARK Me AS BRAINLIEST pls

Answered by itsPapaKaHelicopter
0

Answer:

Following principal rate and time and display simple interest:

  • Calculate Total Amount Accrued (Principal + Interest), solve for A.

  • A = P(1 + rt) Calculate Principal Amount, solve for P.

  • P = A / (1 + rt) Calculate rate of interest in decimal, solve for r.

  • r = (1/t)(A/P - 1) Calculate rate of interest in percent.

  • Calculate time, solve for t.

 \\  \\  \\  \\ \sf \colorbox{lightgreen} {\red★ANSWER ᵇʸɴᴀᴡᴀʙ}

Similar questions