This is the problem:
Write a class whose constructor takes a vector of Student objects, where each Student has a name of type string and a score of type int. The class internally stores the data passed to it in its constructor. The class should have an overloaded output operator that outputs its data in the form of an HTML table. Make up suitable input and use it to test your class.
I have no idea how to start. I really struggle with classes for some reason, though the HTML table does noseem very hard.