Search:

Type: Posts; User: chronoz13

Search: Search took 0.11 seconds.

  1. Replies
    9
    Views
    4,196

    Re: Where am I going wrong? :)

    public static double calcTip(double bill, double RATE)
    {
    double tip;

    tip = bill * RATE;

    System.out.println("The tip should be at least " + tip);

    ...
  2. Replies
    9
    Views
    4,196

    Re: Where am I going wrong? :)

    another knowledge here... so declaring a method void is NOT NECESSARY AT ALL TIMES..(but sometimes it is). hmmm
    the hardest part of that is what am i going to return? if i dont know what to...
Results 1 to 2 of 2