I am trying to call a method. When I try to compile, it gives a 'can't make static reference to void seat(int) in class Prog719'
the call is seat(request);
the method is defined as
public void seat(int request)
can you give me some insight into what I'm doing wrong, either from the error message or the little code I've given?