#include #include using namespace std; class Student{ public: int ID; string name; Student::Student(); Student(int, string); void display(); };