Due Before class on Oct 10th.
As soon as you can, send me a brief email message to allow me to add your email address to my list. You can combine the other three parts of the assignment below into one message.
Try to to post a Java applet on the web using your account on grace.evergreen.edu or another reliable server if you are already familiar with it. You could start with one of the samples from the web page.
Write a Java applet that prints out a multiplication table. I suggest doing it step by step.
If you get your table to print out properly and you still have some time, try to put the nested loops into a separate function which takes one argument: the width (and height) of your table. If you get that working and are still bored, try printing out the labels for the rows and columns of the table. Make it print out something like this:
X | 1 2 3 4 5 ---+-------------- 1 | 1 2 3 4 5 2 | 2 4 6 8 10 3 | 3 6 9 12 15 4 | 4 8 12 16 20 5 | 5 10 15 20 25