// Page 104 - 105 public class Prog_8_1 // StudentDemo { public static void main(String[] args) { Student one = new Student(); one.writeOutput(); System.out.println(); one.set("John Smith", 82); one.writeOutput(); System.out.println(); // Ex: decl. me with info of mine? Student me = new Student("Jon W.", 99); me.writeOutput(); } }