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 = Consol...