Console Programming Assignment #1



  1. This assignment is comprised of creating a console program which will calculate a tax amount (for Ohio, this is 6.5%) and a total sales price, given a sales price. The behavior and layout of this program should be as in the example program which is displayed below. Total points for this assignment will be 50 points. This assignment is due on Tue, Feb 5. All objects and techniques necessary for this assignment have been (or will be) covered in class. The program should look and function as follows:
    	Enter amount of sale: 10		// run 1
    	The tax is: $0.65
    	The total is: $10.65
    
    	Enter amount of sale: 12.5		// run 2
    	The tax is: $0.81
    	The total is: $13.31
    
    
  2. You must set the names of all objects/variables included in your program to have meaningful names with correct naming conventions.
  3. You should refer to the programming guidelines and follow all guidelines presented there. Failure to adhere to any of the assignment specifications/programming guidelines will result in loss of points.
  4. Make sure to keep a copy of the source code that you turn in.
  5. Please feel free to ask questions/send e-mail if any items require clarification.

Hints & Updates: (updated Sep 18, 6 PM)