public class Dog{
int old;
float h;
Dog(int Old, float H)
{
old=Old;
h=H;
}
public static void main(String[] args){
Dog d=new Dog(3,12.3);
}
}
int old;
float h;
Dog(int Old, float H)
{
old=Old;
h=H;
}
public static void main(String[] args){
Dog d=new Dog(3,12.3);
}
}