KnowledgeBoat Logo

Computer Applications

Write a Java assignment statement that will set the value of the variable interestAmount to the value of the variable balanceAmount multiplied by the value of the variable rate. The variables are of type double.

Values & Data Types Java

ICSE

23 Likes

Answer

double interestAmount = balanceAmount * rate;

Answered By

13 Likes


Related Questions