Just so everyone is clear on naming restrictions in Java (and this
applies to all programming languages I know of). The name can only
contain letters, numbers, underscores, and the dollar sign. The name
cannot start with a number (and therefore can start with a letter,
underscore, or dollar sign). These rules of naming apply to class
names, variable name, method (also known as functions) names, and
pretty much anything you name anything in programming.
You can read more here:
http://www.cafeaulait.org/course/week2/08.html
Jay can answer more explicitly, but you are right: he is only
requiring you to do the functions. Though, you should have a way of
testing these functions. So, you should have print statements (i.e.
System.out.format() or System.out.println()) in your main that call
your functions and verify that they are giving the correct answers. In
order to properly do the defense, you'll need to do this kind of
testing.
Sarah (TA)
On May 2, 12:36 pm, "Tory S. Anderson" <
torys.ander...@gmail.com>
wrote: