class student{
float height;
float weight;
String name, sex, no;
void setstudent(String n,String s,String n_){ name=n; sex=s; no=n_; }void setWH(float W,float H){ weight=W; height=H; }
}
public class A_110{
public static void main(String [] args)
{ student st1,...