Programming with Java -- Assignment 1
Hello, who
Hints:
Strings can be concatenated with +.
Look at
System.getProperty(key)
and run
the Prop program.
Math
Write a program that prints a reasonably pretty looking
multiplication table for the numbers from 1 to 19,
where the element in row i and column j
contains the product ij.
Recursion
Write a program that prints Fibonacci numbers that fit into short.
Use an exception and terminate gracefully.
Words of Wisdom
Define succinctly
-
class,
-
object,
-
method,
-
and message.