Search:

Type: Posts; User: jbarcus81

Search: Search took 0.12 seconds.

  1. Replies
    13
    Views
    4,721

    [SOLVED] Re: Calculating Commission with a GUI???

    Well I just found out the code was handed out because we all bombed on the test ... so here is the code I should have come up with on my own.. Now, in my opinion, this is way advanced for where we...
  2. Replies
    13
    Views
    4,721

    [SOLVED] Re: Calculating Commission with a GUI???

    The code at line 30 is
    rate = 0.08;

    I'll look into the compiler to get more details.. But I think I have some code out of place... seems logic.
  3. Replies
    13
    Views
    4,721

    [SOLVED] Re: Calculating Commission with a GUI???

    Red all over? That's not an industry term? I'm newer at this than I thought.. LoL.. /joking.. Here is the output of Eclipse...
  4. Replies
    13
    Views
    4,721

    [SOLVED] Re: Calculating Commission with a GUI???

    I need a GUI to collect the information.. in my original post I did up an image if you click the link of what my final product should be.. I'm having trouble getting there.. but Eclipse is having a...
  5. Replies
    13
    Views
    4,721

    [SOLVED] Re: Calculating Commission with a GUI???

    import javax.swing.JOptionPane;
    import java.text.DecimalFormat;

    public class Commission
    {
    public static void main(String[] args)
    {
    String input;
    double sales;
    double rate;
  6. Replies
    13
    Views
    4,721

    [SOLVED] Re: Calculating Commission with a GUI???

    Now I can use else/if or switch's ... here is what I have so far and I've got errors all over... it's my else/if's ...


    if (sales >= 400000)
    rate = 0.1;
    else if (sales >= 300000)...
  7. Replies
    13
    Views
    4,721

    [SOLVED] Calculating Commission with a GUI???

    I'm back!! Your neighborhood noob extraordinaire!! Here's my problem.. I've not got enough code just yet to post but I'm just totally lost!!!!




    I'm lost guys.. I'm going to do my best and...
Results 1 to 7 of 7