This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
The constructor of the panel class should initialize all instance variables including the Vector object. To simulate data in a file, you can create a vector of Student objects. To do this, create three Student objects based on the following information: John Jones 88 92 95 Kelly Green 76 83 86 Jeff Smith 92 94 88 Then, add each of these objects to the Vector object.
------------
something like this?
public class panel { public string name; public int scores;
public panel(string inName, int inScores) { name = inName; scores = inScores; } } panel student1 = new panel("John Jones", "88 92 95"); . panel student3 = new panel("Jeff Smith", "92 94 88");