public static void Main()
Console.WriteLine(son1.getEyes());
son1.setTestosteroneLevel();
Console.WriteLine(son1.getTestosteroneLevel());
private string eyecolour;
private string haircolour;
Console.WriteLine("Tell me the eye colour of this human");
eyecolour = Console.ReadLine();
private int testosteroneLevel;
public void setTestosteroneLevel()
Console.WriteLine("Please tell me the testosterone level of the son");
testosteroneLevel = Convert.ToInt32(Console.ReadLine());
public int getTestosteroneLevel()
return testosteroneLevel;