Pseudo Code

 

Assignment Overview

The Assignment will accomplish three tasks:

  • Demonstrate how to use pseudo code to help programming.
  • Use Scanner class to get user input from a keyboard (allow user interaction).
  • Demonstrate how to use class and objects (OOP concepts).

Case Assignment

Write a java program to help you calculate property tax. The program will perform the following tasks:

  1. Prompt the user to enter the property value of the house.
  2. Prompt the users for the property tax rate.
  3. Display the result. 

Your task:

  1. Write pseudo code based on your analysis.
  2. Write a Java application program based on your pseudo code.

 

Hint: in this program, you will need to put the following statement at the beginning of your program to allow user input.

import java.util.Scanner;

Assignment Expectations

The program needs to:

  • demonstrate the ability to use the selective and repetitive statements,
  • have no bugs, and
  • perform the five tasks (at least) specified in the assignment.