I have made a program in Java that is designed to take user input in the form of a yearly sales total, and use it to calculate their yearly commission bonus, and then return this value to the user. I have it all in one main class now, but I would very much be interested in how to take the bottom half of my program code, and transfer it to a different external class in a different file....
Here is my code:
and I would like to take this code block:package annual_pay; import java.util.*; public class {@SuppressWarnings("empty-statement") public static void main(String[] args) { double T = 50000; //set value for base salary double Amt; //declare variable for final pay int x = 1; do{ try{ //validate user input Scanner percent = new Scanner(System.in); System.out.println("Please enter annual sales:");//request user input System.out.println("Please enter valid dollar value:"); double yearly = percent.nextDouble(); //store user input if (yearly >= 0 && yearly <= 500000){ //if over $500,000.00 in sales if (yearly >80000){ //if 80% sales goal was not reached double YrPrcnt = yearly * .05; //value used for compensation set next Amt = T + YrPrcnt * 1.25; //set Amt to pay plus commissions System.out.print("The Annual Payrate for employee is: $"); System.out.println(Amt);} else { System.out.print("The Annual Payrate for employee is: $"); System.out.println(T);}} else { System.err.print("Sales too high, "); System.err.println("please see Human Resources.");} x=2; break; } catch(Exception e){ //if user input throws exception System.out.println("Try again please");}}while(x==1); System.out.println("-------------------------------------------------"); System.out.println ("Salesperson regular wages = $50,000"); // 80% of sales target is computed // Target = 100000 * 80%. System.out.println("Sales Target is:"); System.out.println ("$100,000 * 80% = $80,000"); // Return 5% commission of sales target // commission = 5% * $100,000; System.out.println ("100,000 * 5% = $5000"); // Return commission with acceleration factor // Commission = 5% + 1.25 acceleration factor; System.out.println ("5% + 1.25 = 6.25%"); // Return potential. // Sales with 5% interest increment at 1.25 acceleration // factor until annual sales reach 50% of salesperson annaul sales // total sales = 50% + 6.25%; System.out.println ("50% + 6.25% = 56.25% "); // Calculate potential compensation = 100,000 / 56.25%; System.out.println ("$100,000 / 56.25% = $56,250"); // Calculate potential compensation by sales; // Return potential payrates with commissions; System.out.println("Potential compensations based on sales:"); System.out.println("-------------------------------------"); System.out.println ("$100,000 * 5% = $5,000"); System.out.println ("$100,000 + $5,000 = Total Sales $105,000"); System.out.println ("$105,000 / 56.25% = $56,562.50"); System.out.println ("$110,000 / 56.25% = $61,875"); System.out.println ("$115,000 / 56.25% = $64,687.50"); System.out.println ("$120,000 / 56.25% = $67,500"); System.out.println ("$125,000 / 56.25% = $70,312.50"); System.out.println ("$130,000 / 56.25% = $73,125"); System.out.println ("$135,000 / 56.25% = $75,937.50"); System.out.println ("$140,000 / 56.25% = $78,750"); System.out.println ("$145,000 / 56.25% = $81,562.50"); System.out.println ("$150,000 / 56.25% = $84,375");}} //end program....
and create a second, external class within the same package to run this. This is the list of potential compensation amounts, based on yearly sales totals, and I would like for it to be in a different program file.// 80% of sales target is computed // Target = 100000 * 80%. System.out.println("Sales Target is:"); System.out.println ("$100,000 * 80% = $80,000"); // Return 5% commission of sales target // commission = 5% * $100,000; System.out.println ("100,000 * 5% = $5000"); // Return commission with acceleration factor // Commission = 5% + 1.25 acceleration factor; System.out.println ("5% + 1.25 = 6.25%"); // Return potential. // Sales with 5% interest increment at 1.25 acceleration // factor until annual sales reach 50% of salesperson annaul sales // total sales = 50% + 6.25%; System.out.println ("50% + 6.25% = 56.25% "); // Calculate potential compensation = 100,000 / 56.25%; System.out.println ("$100,000 / 56.25% = $56,250"); // Calculate potential compensation by sales; // Return potential payrates with commissions; System.out.println("Potential compensations based on sales:"); System.out.println("-------------------------------------"); System.out.println ("$100,000 * 5% = $5,000"); System.out.println ("$100,000 + $5,000 = Total Sales $105,000"); System.out.println ("$105,000 / 56.25% = $56,562.50"); System.out.println ("$110,000 / 56.25% = $61,875"); System.out.println ("$115,000 / 56.25% = $64,687.50"); System.out.println ("$120,000 / 56.25% = $67,500"); System.out.println ("$125,000 / 56.25% = $70,312.50"); System.out.println ("$130,000 / 56.25% = $73,125"); System.out.println ("$135,000 / 56.25% = $75,937.50"); System.out.println ("$140,000 / 56.25% = $78,750"); System.out.println ("$145,000 / 56.25% = $81,562.50"); System.out.println ("$150,000 / 56.25% = $84,375");}} //end program....
If anyone could tell me the best way to move this code to a different file, and still be able to call it at the end of my initial program, I would be eternally grateful!!