Computer Science, asked by mahijaiswal123, 1 year ago

write a program in java that compute simple interested for rs. 200000 rate 13.5% per annum and time 4year​

Answers

Answered by rushilansari
2

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

   }

}

Similar questions