// // // Name: StudentDemo.java // Goal: Use Student class // // public class StudentDemo { public static void main(String[] args) { Student me = new Student(); me.name = "John Wang"; me.avg = 99; me.id = 2101; me.writeOutput(); } }