//******************************************************************** // itec120student.java Author: you // // Represents an ITEC120 student //******************************************************************** import java.text.DecimalFormat; public class itec120student extends Student { //----------------------------------------------------------------- // Returns a description of this student as a string. //----------------------------------------------------------------- public String toString() { return super.toString(); } }