Share Pastebin
Guest
Public paste!

Course

By: a guest | Mar 16th, 2010 | Syntax: Java | Size: 0.45 KB | Hits: 43 | Expires: Never
Copy text to clipboard
  1. class Project1Demo
  2. {
  3.         public static void main(String args[])
  4.         {
  5.                 Course cst338 = new Course ("CST 338", "Dr. Byun");
  6.                 cst338.addStudent ("Tom", 1000);
  7.                 cst338.addStudent ("Smith", 1000);
  8.                 cst338.addStudent ("John", 2000);
  9.                 cst338.addStudent ("Alice", 3000);
  10.                 cst338.dropStudent (2000);
  11.                 cst338.setScores (1000, 25, 100, 100);
  12.                 cst338.setScores (3000, 25, 100, 100);
  13.                 cst338.setScores (1000, 15, 80.5, 79.5);
  14.                 cst338.report ();
  15.         }
  16. }