// // An application to use Student // class UseStudent { public static void main(String[] args) { Student stu1 = new Student(); // "none", 0 Student Joe = new Student("Joe Smith", 99); stu1.writeOutput(); System.out.println("---------"); Joe.writeOutput(); System.out.println("---------"); //Q: make stu1 to your info: name, 87 stu1.set("John Wang", 87); // Q: output info of stu1? stu1.writeOutput(); System.out.println("---------"); // Q: Write state. to make Joe's score 50? Joe.set(50); Joe.writeOutput(); System.out.println("\n\n\nDone.\n\n"); } }