Hi Steve,
From what i can see your problem is that your 'meth' method is
void,
this means it does not return a value to the method from where it was called.
what you need is a method that returns
int, e.g.
if you wanted to return a
String your method would be:
So, since you are returning values, you can output these in 2 ways, you can create two
ints to store your values in:
eg
and output value_to... to the user
or you can simply go:
I hope this is of some help to you
Tony
[ November 16, 2003: Message edited by: Tony Matthes ]