Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~187 People Reached
Favorite Forums
Favorite Tags
java x 4
Member Avatar for hoven

[CODE]import java.util.*; import java.text.*; public class Interest { static DecimalFormat fmt=new DecimalFormat("0.00"); //2 decimal place. static Scanner input=new Scanner(System.in).useDelimiter("\r\n"); static double[] principle = new double [10]; static double[] rate = new double [10]; static double[] interest = new double [10]; static double[] days = new double [10]; static int i; …

Member Avatar for hoven
0
127
Member Avatar for hoven

The java program i have to come out with for a mini project is a interest calculator, using jcreator. Where you have to calculate the following 1. interest payable 2. principle required to earn $x of interest 3. calculate time required to earn $x of interest. The program must cycle …

0
60