class Rextester
{
int height;
int weight;
int hairLength;
public void run()
{
System.out.println("This human can run");
}
public void walk()
{
System.out.println("This human can walk");
}
public void phisic()
{
System.out.println("Human phisic is : " + height+weight);
}
public static void main(String[] args)
{
}
}
|