Computer Applications
Write a Java program to obtain principal amount, rate of interest and time from user and compute simple interest.
Java
Java Operators
23 Likes
Answer
import java.util.Scanner;
public class KboatSimpleInterest
{
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
System.out.print("Enter principal: ");
double p = in.nextDouble();
System.out.print("Enter rate: ");
double r = in.nextDouble();
System.out.print("Enter time: ");
int t = in.nextInt();
double si = p * r * t / 100;
System.out.println("Simple Interest: " + si);
}
}
Output

Answered By
9 Likes
Related Questions
A student needs to calculate the average of three numbers
x
,y
, andz
. Which is the correct Java expression for this calculation?Write Java expression for:
Identify the operator that gets the highest precedence while evaluating the given expression:
x + y * z / w - p
What will be the output of the following code?
int x = 9; x -= 2 * --x / x++ % 3; System.out.println("x = " + x);