Computer Science, asked by sona1640, 9 months ago

wap in java to find SI​

Answers

Answered by Anonymous
1

Explanation:

#include<stdio.h>

int main()

{

float P , R , T , SI ;

P =34000; R =30; T = 5;

SI = (P*R*T)/100;

printf("\n\n Simple Interest is : %f", SI);

return (0);

Answered by anindyaadhikari13
3

Here is your answer.

&lt;hr/&gt;

class SimpleInterest

{

static void main(double p, double r, double t)

{

double si=p*r*t/100.0;;

System.out.println("Simple Interest is: "+si);

}

}

&lt;hr/&gt;

Similar questions