Math, asked by siddhantsinha71, 9 months ago

Write a program to calculate and print the Simple Interest taking principal =

200, time = 2.5, rate = 6.6.​

Answers

Answered by 8472
0

Answer:

class interest

{

public static void main()

{

int p=200;

double rate=6.6;

double time=2.5;

double si=(p*rate*time)/100;

System.out.println("Simple interest="+si)

}}

Step-by-step explanation:

This is the answer hope it helps pls mark it as brainliest

Similar questions