wap in java to find SI
Answers
Answered by
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
3
Here is your answer.
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);
}
}
Similar questions