So for this assignment I have to use 3 classes in one file, and each of these classes has about 2 methods. I'm not quite sure how I should construct this.
I was simply thinking about this (this is just a "sketch"):
public class{
main{}
}
method 1 {}
method 2 {}
class 2{}
method 3{}
method 4{}
class 3{}
method 5{}
method 6{}
Is this the correct structure? Or should I put the 3 classes together first and then all the methods on together on the bottom?