/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package tests;

/**
 *
 * @author kvaradar
 */
public class CSStudent extends Student {

    double CSGPA;

    public CSStudent(String n, String e) {
        super(n,e);
    }

    public void setCSGPA(double x) {
        CSGPA = x;
    }

    @Override
    public void printRecord(){
        System.out.println(name);
        System.out.println(enrollNo);
        System.out.println("GPA: " + GPA);
        System.out.println("CSGPA: " + CSGPA);
    }

}
