Lab 022 Lab Java 6 Question 3

preview_player
Показать описание
CODING dalam comment!

Song used:

--------------------------------------------------------------------------------------------

NO COPYRIGHT Jazz Background Music / Cafe Music Free Copyright / Restaurant Showreel Copyright Free

--------------------------------------------------------------------------------------------

#aimanqm #aiman_qm #javalab
Рекомендации по теме
Комментарии
Автор

CODING:


package interest2;

import java.util.Scanner;
public class Interest2 {

public static void main(String[] args) {
double invest;

invest = insertValue();

System.out.println("Your money after 12 months(5% annual interest): RM" + calculateInterest(invest));
}

public static double insertValue(){
Scanner in = new Scanner(System.in);
System.out.println("Please enter your investment value: ");
double invest = in. nextDouble();

return invest;
}

public static double calculateInterest(double invest){
double finalValue = invest + (invest*5/100);
return finalValue;
}

}

aimanqm
welcome to shbcf.ru