The Big Picture
Class that represents an "object"
public class _______________________ {
}
Program that only contains a "main" method
Calculate the value of PI from the infinite series:
PI = 4 - 4/3 + 4/5 - 4/7 + 4/9 - 4/11 + ....
public class _______________ {
public static void main(String[] args) {
}
Program that contains a "main" method and one or more "static" methods
Allow user to enter a word and tell whether or not it is a "palindrome".
public class _____________________ {
public static __________________________________________
{
}
public static void main(String[] args) {
}
}