Hello all,
I have created a program(gui) that allows a user to input time and minutes in textfields and then calculates the totals and average wages per hour, to generate a report that displays in a text area. The program works but instead of just calculating the totals, it calculates the totals after each entry, when all I need is just a total of all entries.
This is my first time using java and my first time programming, but I am guessing that the problem lies with my nested for loop which calculates all information after every user input instead of waiting until all inputs have been entered and then calculating the totals.
the code is as follows. If anyone has any ideas or advise, I would really appreciate it.
Thank you.
private void runreportButtonActionPerformed(java.awt.event.ActionEvent evt) { // Calculates total minutes of tutoring provided, average wages earned per hour, total earned to date, and determines if average wage per hour is below, average, or above minimum wageTODO add your handling code here: int columns = 2; final int rows = earnings.length; double totalTime = 0.00; double totalPayment = 0.00; double averageWages =0.00; double minWage =7.00; String report=""; //adds total tutoring and displays in text area for (int j=0;j<columns;j++){ //add total earnings and display in text area for(int i=0;i<rows;i++){ if (j==0){ totalTime+= earnings[i][j]; }else if(j==1){ totalPayment+= earnings[i][j]; //Displays in text area jTextArea1.append("\n\n"); jTextArea1.append ("Report of your wages to Date\n\n"); jTextArea1.append ("\n"); jTextArea1.append("Total Minutes Spent Tutoring = " + totalTime + "\n"); jTextArea1.append("Total Earnings = $ " + totalPayment+ "\n"); //calculates average per hour wage if (earnings.length>0){ averageWages = totalPayment/(totalTime/60); //Displays in text area jTextArea1.append("Average Per Hour Wage $ " + averageWages + "\n"); jTextArea1.append("\n\n"); jTextArea1.append("Minimum Wage is currently $6.55"); jTextArea1.append("\n\n"); report+="\n"; if(averageWages<minWage){ jTextArea1.append("Your average wages per hour are below Average"); }else if(averageWages>=minWage && averageWages<=minWage * 2.00){ jTextArea1.append("Your average wages per hour are average"); }else if(averageWages > minWage * 2.00){ jTextArea1.append("Your average wages per hour are above Average"); } } } }
Close your loops before going to append the data to textarea.
for (int j=0;j<columns;j++){ for(int i=0;i<rows;i++){ if (j==0){ totalTime+= earnings[i][j]; } else if(j==1){ totalPayment+= earnings[i][j]; } } }
Thank you for the response. I did do this, however, now when I click the run report button, nothing displays to the text area.
This is what the code looks like now. Any ideas of what I am doing wrong?
int columns = 2; int rows = earnings.length; double totalTime = 0.00; double totalPayment = 0.00; double averageWages =0.00; double minWage =7.00; String report = new String(); for (int j=0;j<columns;j++){ for(int i=0;i<rows;i++){ if (j==0){ totalTime+= earnings[i][j]; } else if(j==1){ totalPayment+= earnings[i][j]; } } } jTextArea1.append("\n\n"); jTextArea1.append("Report of your wages to Date\n\n"); jTextArea1.append("\n"); if (earnings.length>0){ averageWages = totalPayment/(totalTime/60); } //Displays in text area jTextArea1.append("Average Per Hour Wage $ " + averageWages + "\n"); jTextArea1.append("\n\n"); jTextArea1.append("Minimum Wage is currently $6.55"); jTextArea1.append("\n\n"); if(averageWages<minWage){ jTextArea1.append("Your average wages per hour are below Average"); }else if(averageWages>=minWage && averageWages<=minWage * 2.00){ jTextArea1.append("Your average wages per hour are average"); }else if(averageWages > minWage * 2.00){ jTextArea1.append("Your average wages per hour are above Average"); } jTextArea1.append("Total Minutes Spent Tutoring = " +totalTime + "\n"); jTextArea1.append("Total Earnings = $ " +totalPayment+ "\n"); //calculates average per hour wage jTextArea1.append(report); }