Dim another as char = "Y"
Do while another = "Y" or another = "y"
Console.WriteLine("Please answer the following question")
Console.WriteLine("What is the capital city of Italy?")
Console.WriteLine("1: London")
Console.WriteLine("2: Rome")
Console.WriteLine("3: Paris")
Console.WriteLine("Please enter the number of the correct answer ")
answer1 = Console.Readline()
console.writeline("correct")
console.writeline("Incorrect")
Console.WriteLine("Please answer the following question")
Console.WriteLine("What is the capital city of Scotland?")
Console.WriteLine("1: Glasgow")
Console.WriteLine("2: Edinburgh")
Console.WriteLine("3: Aberdeen")
Console.WriteLine("Please enter the number of the correct answer ")
answer2 = Console.Readline()
console.writeline("correct")
console.writeline("incorrect")
Console.WriteLine("Your score is :" & score & "/2")
Console.WriteLine("Thanks for completing my quiz. Would you like another go? y or n")
Another = console.readline()