Computer Science, asked by yuvraj7thgen, 5 months ago

write a java program to find the SI where P is 700000, R is 7.5% and time is 53 days

Answers

Answered by aduraj30112007
0

Answer:

sorry unable to understand the question

Explanation:

mark me brainleist

Answered by LastShinobi
3

Answer:

import java.util.Scanner;

public class JavaExample

{

public static void main(String args[])

{

float p, r, t, sinterest;

Scanner scan = new Scanner(System.in);

System.out.print("Enter the Principal : ");

p = scan.nextFloat();

System.out.print("Enter the Rate of interest : ");

r = scan.nextFloat();

System.out.print("Enter the Time period : ");

t = scan.nextFloat();

scan.close();

sinterest = (p * r * t) / 100;

System.out.print("Simple Interest is: " +sinterest);

}

}

Explanation:

Hope it will help you

Follow me guys

Similar questions