so I'm running a program in java and I can't really find the main error this is my code:
public class Main { public static void main(String[] args) { double myCheck = 50.00; double yourCheck = 19.95; double fiinalRATE = 0.15; System.out.println("Tips are"); calcTip(myCheck); calcTip(yourCheck); public void calcTip(double bill); { tip = bill * fiinalRATE; System.out.println("The tip should be at least " + tip); } } and this is the error that I'm getting I think its the header but I don't really know what to put I'm kinda new at java though 