#include #include using namespace std; class Student { public: int rollno; float height,weight; string name; Student() { name = "Nikhil"; rollno = 20; height = 165.5; weight = 58.2; } void read() { cin>>name; cin>>rollno; cin>>height; cin>>weight; } void display() { cout<