class TestFuncs: ICodeTest
public void HelloWorldN()
Console.WriteLine("Please input number to go through");
int n = Convert.ToInt32(Console.ReadLine());
for(int i = 1; i<=n; i++)
public void HelloWorldNPQ()
Console.WriteLine("Please input number to go through, and two numbers to be divided by (in that order)");
int n = Convert.ToInt32(Console.ReadLine());
int p = Convert.ToInt32(Console.ReadLine());
int q = Convert.ToInt32(Console.ReadLine());
for(int i = 1; i<=n; i++)
Console.WriteLine("Please input a start and length of your fibonacci sequence");
int start = Convert.ToInt32(Console.ReadLine());
int n = Convert.ToInt32(Console.ReadLine());
throw new NotImplementedException();
Console.WriteLine("ICodeTest includes four methods:");
Console.WriteLine("1) HelloWorldN");
Console.WriteLine("2) HelloWorldNPQ");
Console.WriteLine("3) Fibonacci Sequence");
Console.WriteLine("4) XML Reader");
Console.WriteLine("Please make enter an integer 1-4 to select which to run");
TestFuncs methods = new TestFuncs();
selection=Convert.ToInt32(Console.ReadLine());
if(selection >4 || selection < 1)