Your program should begin with a block comment using the following template:
/** * Assignment #1. * This program adds up some coins and prints the total value. * * Authors: Charlie McDowell and Jane Programmer */You program names should always begin with an uppercase letter and then use lowercase except to separate embedded words (as in CountChange).
Your variable names should begin with a lowercase letter, and use uppercase to separate embedded words (as in someVariableName). The variable names must be descriptive English words. There are only a few exceptions to this and they will be discussed in class. It is better to err on the side of long and descriptive (use "index" instead of "i", use "quarters" instead of "q").
You must use proper indentation. See the examples in the book. Each opening brace "{" must be followed by additional indentation. Each closing "}" must be on a line by itself and aligned directly below the matching "{" or the keyword on the line containing the matching "{" if the "{" is not on a line by itself.