import java.io.*;
import java.util.Scanner;

/**
* This is testing the thing class
*
* @author Yanitsa Staleva
* @date: 09/17/08
* section 2 
* Lab 8
*/

public class ThingDriver
{
  public static void main(String[] args)
{
 Thing one;
 Thing two;
 Thing three;

  //Instantiate one and then call the putThing method with 15.
  one = new Thing();
  one.putThing(15);
  
 System.out.println("For one");
 System.out.println("getX() returns: " + one.getX()+
 "\ngetY() returns: " + one.getY()+
 "\ngetZ() returns: " + one.getZ());
  //Instantiate two and then call the putThing method with 27.
  two = new Thing();
  two.putThing(27);
  
 System.out.println("For tow");
 System.out.println("getX() returns: " + two.getX()+
 "\ngetY() returns: " + two.getY()+
 "\ngetZ() returns: " + two.getZ());

  //Instantiate three and then call the putThing method with 35.
  three = new Thing();
  three.putThing(35);

 System.out.println("For three");
 System.out.println("getX() returns: " + three.getX()+
 "\ngetY() returns: " + three.getY()+
 "\ngetZ() returns: " + three.getZ());


 

}//main
}//ThingDriver
