#include #include using namespace std; class student { public: int roll; float height,weight; string name; student() { name = "Bhagavan"; roll = 1593; height = 172.5; weight = 60.4; } void readinput() { cin>>name; cin>>roll; cin>>height; cin>>weight; } void displaydata() { cout<