QuizMaker
// ---TIPS BEFORE COPY PASTE--- //Press cntrl + A to copy everything //Change visual_studio_program_1 at the very top if you are doing it in a diferent project name //Contact me kgiotakos@gmail.com , discord: GostGK_YT#1554 or GostGK_YT#1111 //HERES THE CODE using System; using System.Threading; namespace Visual_Studio_Program_1 { class Program { static void Main(string[] args) { MakeAQuiz(); Console.ReadKey(); } static void MakeAQuiz() { Console.Write("Please input your question: "); string UserQuestionInput = Console.ReadLine(); Console.Write("Please input the first answer: "); string UserAnswer1Input = Console.ReadLine(); Console.Write("Please input the second answer: "); string UserAnswer2Input = Console.ReadLine(); Console.Write("Which of 1 and 2 is the correct answer?(Reply with a 1 or 2: "); int UserCor