public class Piphans { // instance variables - replace the example below with your own private int x; /** * Constructor for objects of class Piphans */ public Piphans() { // initialise instance variables x = 0; } public String pip(){ return "Hans"; } }