Course
By: a guest | Mar 16th, 2010 | Syntax:
Java | Size: 0.45 KB | Hits: 43 | Expires: Never
class Project1Demo
{
public static void main(String args[])
{
Course cst338 = new Course ("CST 338", "Dr. Byun");
cst338.addStudent ("Tom", 1000);
cst338.addStudent ("Smith", 1000);
cst338.addStudent ("John", 2000);
cst338.addStudent ("Alice", 3000);
cst338.dropStudent (2000);
cst338.setScores (1000, 25, 100, 100);
cst338.setScores (3000, 25, 100, 100);
cst338.setScores (1000, 15, 80.5, 79.5);
cst338.report ();
}
}